mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
22 lines
277 B
PHP
22 lines
277 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use App\Services\PresupuestoService;
|
|
|
|
class Test extends BaseController
|
|
{
|
|
|
|
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$text = PresupuestoService::example();
|
|
echo $text;
|
|
}
|
|
}
|
|
|