mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
22 lines
249 B
PHP
Executable File
22 lines
249 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers\Informes;
|
|
use App\Controllers\BaseController;
|
|
|
|
|
|
class Informe extends BaseController
|
|
{
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
echo 'Informe';
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|