?phpclass TestController{ public function __construct() { } public function index() { echo 'hello world !'; }}
<?php
class TestController
{
public function __construct()
{
}
public function index()
{
echo 'hello world !';
}
}
