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