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

View File

@ -0,0 +1,27 @@
<?php
namespace CAUProject3Contact\Controller\Site;
use CAUProject3Contact\Controller\ControllerSite;
class Index extends ControllerSite {
/**
* Index constructor.
*/
public function __construct() {
parent::__construct();
$this->addHead( [
] );
$this->addFooter( [
] );
$this->addData( [] );
$this->view();
}
}
?>