mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
19 lines
228 B
PHP
19 lines
228 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
class Test extends BaseController
|
|
{
|
|
|
|
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
helper('general');
|
|
var_dump( getAllClass());
|
|
}
|
|
} |