mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
27 lines
482 B
PHP
27 lines
482 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use CodeIgniter\Config\BaseService;
|
|
|
|
use App\Models\Configuracion\PapelGenericoModel;
|
|
|
|
class PresupuestoService extends BaseService
|
|
{
|
|
public static function example(){
|
|
return 'Hola';
|
|
}
|
|
|
|
/*
|
|
/**
|
|
* getPapelForMenu.
|
|
* Devuelve la lista de papeles disponibles
|
|
*
|
|
* @param mixed $tipo_impresion
|
|
* @param mixed $dimensiones
|
|
* @return mixed
|
|
*/
|
|
public static function test(){
|
|
}
|
|
}
|
|
|