28 lines
428 B
PHP
28 lines
428 B
PHP
<?php
|
|
include_once "../../global.inc.php";
|
|
|
|
require_once PATH_API."/Api.php";
|
|
|
|
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
/**
|
|
* Description of HelloApi
|
|
*
|
|
* @author stubbfel
|
|
*/
|
|
class SpsApi extends Api{
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
}
|
|
|
|
public function __destruct() {
|
|
parent::__destruct();
|
|
}
|
|
}
|
|
|
|
?>
|