First PUsh

This commit is contained in:
2018-11-26 14:38:47 +09:00
commit d9e043c468
33 changed files with 8648 additions and 0 deletions

29
src/API/API.php Normal file
View File

@ -0,0 +1,29 @@
<?php
namespace CAUProject3Contact\API;
use CAUProject3Contact\Controller\Controller;
class API extends Controller {
private $declaredFunctions = [];
/**
* API constructor.
*
* @param array $declaredFunctions
*/
public function __construct( array $declaredFunctions ) {
parent::__construct();
$this->declaredFunctions = $declaredFunctions;
}
/**
* @return array
*/
public function getDeclaredFunctions() {
return $this->declaredFunctions;
}
}
?>