12 lines
125 B
PHP
Executable File
12 lines
125 B
PHP
Executable File
<?php
|
|
|
|
namespace app\common\controller;
|
|
|
|
class Index {
|
|
|
|
public function index() {
|
|
return 'Hello World';
|
|
}
|
|
|
|
}
|