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