Fireguard\Report\Laravel\ReportServiceProvider::register PHP Метод

register() публичный Метод

Register the service provider.
public register ( ) : void
Результат void
    public function register()
    {
        $this->mergeConfigFrom(__DIR__ . '/../../../config/report.php', 'report');
        $configDefaultExporter = $this->app['config']['report.default-exporter'];
        $defaultExporter = class_exists($configDefaultExporter) ? $configDefaultExporter : PdfExporter::class;
        $storagePath = !empty($this->app['config']['report.storage-path']) && file_exists($this->app['config']['report.storage-path']) ? $this->app['config']['report.storage-path'] : storage_path('app');
        // Register Default Exporter
        $this->app->bind(ExporterContract::class, $defaultExporter);
        $this->app->bind(ReportContract::class, Report::class);
        $this->app->bind(HtmlExporter::class, function ($app) use($storagePath) {
            return (new HtmlExporter())->setPath($storagePath)->configure($app['config']['report.html']);
        });
        $this->app->bind(PdfExporter::class, function ($app) use($storagePath) {
            return (new PdfExporter())->setPath($storagePath)->configure($app['config']['report.pdf']);
        });
        $this->app->bind(ImageExporter::class, function ($app) use($storagePath) {
            return (new ImageExporter())->setPath($storagePath)->configure($app['config']['report.image']);
        });
    }
ReportServiceProvider