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