コード例 #1
0
ファイル: BaseController.php プロジェクト: 42mate/towel
 public function __construct()
 {
     parent::__construct();
     $reflection = new \ReflectionClass(get_class($this));
     $this->controllerName = strtolower($reflection->getShortName());
 }
コード例 #2
0
ファイル: BaseModel.php プロジェクト: 42mate/towel
 public function __construct()
 {
     parent::__construct();
     $this->discoverFields();
 }