app->bind(ExtractorInterface::class, CsvExtractor::class); // Register our CSV extractor specifically $this->app->bind('extractor.csv', function ($app) { return new CsvExtractor(); }); } /** * Bootstrap any application services. */ public function boot(): void { // } }