Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
vendor
/
macellan
/
laravel-zip
/
src
:
ZipServiceProvider.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Macellan\Zip; use Illuminate\Support\ServiceProvider; class ZipServiceProvider extends ServiceProvider { /** * Register the service provider. * * @return void */ public function register() { $this->registerCpanelService(); /*if ($this->app->runningInConsole()) { $this->registerResources(); }*/ } /** * Register currency provider. * * @return void */ public function registerCpanelService() { $this->app->singleton('zip', function ($app) { return new Zip($app); }); } /** * Register currency resources. * * @return void */ public function registerResources() { if ($this->isLumen() === false) { $this->publishes([ __DIR__ . '/../config/zip.php' => config_path('zip.php'), ], 'config'); } } /** * Check if package is running under Lumen app * * @return bool */ protected function isLumen() { return str_contains($this->app->version(), 'Lumen') === true; } } ?>