mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 18:45:01 +00:00
11 lines
228 B
PHP
11 lines
228 B
PHP
<?php
|
|
namespace Superhelio\Commands\Tests\Stubs;
|
|
|
|
class ServiceProvider extends \Illuminate\Support\ServiceProvider
|
|
{
|
|
public function boot()
|
|
{
|
|
$this->loadMigrationsFrom(dirname(__DIR__) . '/migrations');
|
|
}
|
|
}
|