9  * the LICENSE file that was distributed with this source code.
10  */
11 
12 namespace Tests\Support\Controllers;
13 
14 use CodeIgniter\Controller;
15 
16 class Hello extends Controller
17 {
18     public function index()
19     {
20         return 'Hello';
21     }
22 }
23