32 lines
597 B
PHP
32 lines
597 B
PHP
<?php namespace Cviebrock\EloquentSluggable\Tests;
|
|
|
|
use Illuminate\Support\ServiceProvider as BaseServiceProvider;
|
|
|
|
/**
|
|
* Class TestServiceProvider
|
|
*
|
|
* @package Cviebrock\EloquentSluggable
|
|
*/
|
|
class TestServiceProvider extends BaseServiceProvider
|
|
{
|
|
|
|
/**
|
|
* Indicates if loading of the provider is deferred.
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $defer = false;
|
|
|
|
/**
|
|
* Bootstrap the application events.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
$this->loadMigrationsFrom(
|
|
__DIR__ . '/database/migrations'
|
|
);
|
|
}
|
|
}
|