From 36a0f018aeabfef3870873b3cd1ebd945bd97943 Mon Sep 17 00:00:00 2001 From: amazuecos Date: Wed, 22 Jan 2025 17:42:59 +0100 Subject: [PATCH] add maquina service --- ci4/app/Config/Services.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ci4/app/Config/Services.php b/ci4/app/Config/Services.php index df2d881e..8d209990 100755 --- a/ci4/app/Config/Services.php +++ b/ci4/app/Config/Services.php @@ -3,6 +3,7 @@ namespace Config; use App\Services\FTPService; +use App\Services\MaquinaService; use App\Services\PapelImpresionService; use CodeIgniter\Config\BaseService; use App\Services\ProductionService; @@ -43,4 +44,8 @@ class Services extends BaseService { return new PapelImpresionService(); } + public static function maquina() + { + return new MaquinaService(); + } }