forked from are0h/tapes
16 lines
173 B
PHP
16 lines
173 B
PHP
|
<?php
|
||
|
|
||
|
namespace brain\controllers;
|
||
|
|
||
|
class IndexController
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function start()
|
||
|
{
|
||
|
echo "got it";
|
||
|
}
|
||
|
}
|