Skip to content

Commit

Permalink
tabs to space
Browse files Browse the repository at this point in the history
  • Loading branch information
rap2hpoutre committed Mar 7, 2018
1 parent a105e28 commit 3ee40c9
Showing 1 changed file with 52 additions and 52 deletions.
104 changes: 52 additions & 52 deletions src/Rap2hpoutre/LaravelLogViewer/LaravelLogViewerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,57 +4,57 @@

class LaravelLogViewerServiceProvider extends ServiceProvider {

/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;

/**
* Bootstrap the application events.
*
* @return void
*/
public function boot()
{
if (method_exists($this, 'package')) {
$this->package('rap2hpoutre/laravel-log-viewer', 'laravel-log-viewer', __DIR__ . '/../../');
}

if (method_exists($this, 'loadViewsFrom')) {
$this->loadViewsFrom(__DIR__.'/../../views', 'laravel-log-viewer');
}
if (method_exists($this, 'publishes')) {
$this->publishes([
__DIR__.'/../../views' => base_path('/resources/views/vendor/laravel-log-viewer'),
], 'views');
$this->publishes([
__DIR__.'/../../config/logviewer.php' => config_path('logviewer.php'),
]);

}
}

/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}

/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return array();
}
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;

/**
* Bootstrap the application events.
*
* @return void
*/
public function boot()
{
if (method_exists($this, 'package')) {
$this->package('rap2hpoutre/laravel-log-viewer', 'laravel-log-viewer', __DIR__ . '/../../');
}

if (method_exists($this, 'loadViewsFrom')) {
$this->loadViewsFrom(__DIR__.'/../../views', 'laravel-log-viewer');
}
if (method_exists($this, 'publishes')) {
$this->publishes([
__DIR__.'/../../views' => base_path('/resources/views/vendor/laravel-log-viewer'),
], 'views');
$this->publishes([
__DIR__.'/../../config/logviewer.php' => config_path('logviewer.php'),
]);

}
}

/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}

/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return array();
}

}

0 comments on commit 3ee40c9

Please sign in to comment.