for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\Taxonomies;
use Arcanedev\Support\PackageServiceProvider as ServiceProvider;
/**
* Class TaxonomiesServiceProvider
*
* @package Arcanedev\Taxonomies
* @author ARCANEDEV <[email protected]>
*/
class TaxonomiesServiceProvider extends ServiceProvider
{
/* ------------------------------------------------------------------------------------------------
| Properties
| ------------------------------------------------------------------------------------------------
* Package name.
* @var string
protected $package = 'taxonomies';
* Indicates if loading of the provider is deferred.
* @var bool
protected $defer = false;
| Getters & Setters
* Get the base path of the package.
* @return string
public function getBasePath()
return dirname(__DIR__);
}
| Main Functions
* Register the service provider.
public function register()
$this->registerConfig();
* Bootstrap the application events.
public function boot()
parent::boot();
$this->publishConfig();
$this->publishMigrations();
* Get the services provided by the provider.
* @return array
public function provides()
return [
//
];