From 01cc74ed60293d526ca11b009daa40f7eb71a402 Mon Sep 17 00:00:00 2001 From: amazuecos Date: Thu, 29 Aug 2024 01:03:00 +0200 Subject: [PATCH] delete ftp method --- ci4/app/Config/Services.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ci4/app/Config/Services.php b/ci4/app/Config/Services.php index 572aec46..a802b838 100755 --- a/ci4/app/Config/Services.php +++ b/ci4/app/Config/Services.php @@ -30,11 +30,4 @@ class Services extends BaseService * return new \CodeIgniter\Example(); * } */ - public static function ftp(bool $getShared = true): FTPService - { - if ($getShared) { - return static::getSharedInstance('ftp'); - } - return new FTPService(); - } }