Skip to content

Commit

Permalink
add ftp client interface
Browse files Browse the repository at this point in the history
  • Loading branch information
salimkanoun committed Oct 12, 2024
1 parent 82a23ea commit fd19781
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions GaelO2/app/Providers/AdapterProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
use App\GaelO\Adapters\AzureCacheAdapter;
use App\GaelO\Adapters\DatabaseDumperAdapter;
use App\GaelO\Adapters\FrameworkAdapter;
use App\GaelO\Adapters\FtpClientAdapter;
use App\GaelO\Adapters\HttpClientAdapter;
use App\GaelO\Adapters\JobAdapter;
use App\GaelO\Adapters\MimeAdapter;
use App\GaelO\Adapters\PdfAdapter;
use App\GaelO\Adapters\PhoneNumberAdapter;
use App\GaelO\Interfaces\Adapters\DatabaseDumperInterface;
use App\GaelO\Interfaces\Adapters\FrameworkInterface;
use App\GaelO\Interfaces\Adapters\FTPClientInterface;
use App\GaelO\Interfaces\Adapters\HttpClientInterface;
use App\GaelO\Interfaces\Adapters\JobInterface;
use App\GaelO\Interfaces\Adapters\MimeInterface;
Expand Down Expand Up @@ -44,6 +46,7 @@ public function register()
$this->app->bind(JobInterface::class, JobAdapter::class);
$this->app->bind(PdfInterface::class, PdfAdapter::class);
$this->app->bind(GaelODeleteRessourcesRepository::class, GaelODeleteRessourcesRepository::class);
$this->app->bind(FTPClientInterface::class, FtpClientAdapter::class);
}

/**
Expand Down

0 comments on commit fd19781

Please sign in to comment.