Skip to content

Commit 2ee14bd

Browse files
committed
Add Hello controller
1 parent fea7d64 commit 2ee14bd

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
namespace App\Controller;
4+
5+
class HelloController extends AppController
6+
{
7+
public $autoRender = false;
8+
9+
public function index()
10+
{
11+
$this->response->body('Hello World!');
12+
return $this->response;
13+
}
14+
}

0 commit comments

Comments
 (0)