diff --git a/app/Controllers/Admin/Customer/ServiceController.php b/app/Controllers/Admin/Customer/ServiceController.php index 17ae172..f273f33 100644 --- a/app/Controllers/Admin/Customer/ServiceController.php +++ b/app/Controllers/Admin/Customer/ServiceController.php @@ -2,17 +2,18 @@ namespace App\Controllers\Admin\Customer; +use App\Controllers\Admin\Customer\CustomerController; +use App\Helpers\Customer\ServiceHelper; +use App\Services\Customer\ServiceService; +use App\Services\Equipment\IpService; + +use App\Services\Equipment\LineService; + +use App\Services\Equipment\ServerService; use CodeIgniter\HTTP\RequestInterface; use CodeIgniter\HTTP\ResponseInterface; use Psr\Log\LoggerInterface; -use App\Helpers\Customer\ServiceHelper; -use App\Services\Customer\ServiceService; - -use App\Services\Equipment\LineService; -use App\Services\Equipment\ServerService; -use App\Services\Equipment\IpService; - class ServiceController extends CustomerController { @@ -40,6 +41,7 @@ class ServiceController extends CustomerController if (!$this->_helper) { $this->_helper = new ServiceHelper($this->request); } + // dd($this->_helper); return $this->_helper; } final public function getLineService(): LineService