/home/techb158/ileadtechnology.com/SSM/vendor/maatwebsite/excel/src
NameSizeModeActions
Concerns/-0755rm
Console/-0755rm
Events/-0755rm
Exceptions/-0755rm
Facades/-0755rm
Factories/-0755rm
Fakes/-0755rm
Files/-0755rm
Filters/-0755rm
Helpers/-0755rm
Imports/-0755rm
Jobs/-0755rm
Mixins/-0755rm
Transactions/-0755rm
Validators/-0755rm
Cell.php22340644editdlrm
ChunkReader.php27300644editdlrm
DefaultValueBinder.php5740644editdlrm
DelegatedMacroable.php7300644editdlrm
Excel.php48620644editdlrm
ExcelServiceProvider.php28680644editdlrm
Exporter.php15490644editdlrm
HasEventBus.php12780644editdlrm
HeadingRowImport.php9550644editdlrm
Importer.php15690644editdlrm
MappedReader.php12880644editdlrm
QueuedWriter.php61520644editdlrm
Reader.php123190644editdlrm
RegistersCustomConcerns.php11230644editdlrm
Row.php18600644editdlrm
Sheet.php184860644editdlrm
Writer.php50700644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/maatwebsite/excel/src/ExcelServiceProvider.php (2868B)
app->runningInConsole()) { if ($this->app instanceof LumenApplication) { $this->app->configure('excel'); } else { $this->publishes([ $this->getConfigFile() => config_path('excel.php'), ], 'config'); } } } /** * {@inheritdoc} */ public function register() { $this->mergeConfigFrom( $this->getConfigFile(), 'excel' ); $this->app->bind(TransactionManager::class, function () { return new TransactionManager($this->app); }); $this->app->bind(TransactionHandler::class, function () { return $this->app->make(TransactionManager::class)->driver(); }); $this->app->bind(TemporaryFileFactory::class, function () { return new TemporaryFileFactory( config('excel.temporary_files.local_path', config('excel.exports.temp_path', storage_path('framework/laravel-excel'))), config('excel.temporary_files.remote_disk') ); }); $this->app->bind(Filesystem::class, function () { return new Filesystem($this->app->make('filesystem')); }); $this->app->bind('excel', function () { return new Excel( $this->app->make(Writer::class), $this->app->make(QueuedWriter::class), $this->app->make(Reader::class), $this->app->make(Filesystem::class) ); }); $this->app->alias('excel', Excel::class); $this->app->alias('excel', Exporter::class); $this->app->alias('excel', Importer::class); Collection::mixin(new DownloadCollection); Collection::mixin(new StoreCollection); $this->commands([ ExportMakeCommand::class, ImportMakeCommand::class, ]); } /** * @return string */ protected function getConfigFile(): string { return __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'excel.php'; } }