Fix FTP and add more tests (#274)

This commit is contained in:
Saeed Vaziry
2024-08-09 19:45:00 +02:00
committed by GitHub
parent 8c487a64fa
commit 431da1b728
7 changed files with 183 additions and 38 deletions

View File

@ -2,6 +2,7 @@
namespace App\Providers;
use App\Helpers\FTP;
use App\Helpers\Notifier;
use App\Helpers\SSH;
use App\Helpers\Toast;
@ -36,5 +37,8 @@ public function boot(): void
$this->app->bind('toast', function () {
return new Toast;
});
$this->app->bind('ftp', function () {
return new FTP;
});
}
}