mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
26 lines
259 B
PHP
26 lines
259 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
|
|
use App\Models\Usuarios\UserModel;
|
|
|
|
class Test extends BaseController
|
|
{
|
|
|
|
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
|
|
echo lang('Tarifaacabado.tarifaacabado');
|
|
|
|
|
|
|
|
}
|
|
|
|
} |