mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 11:44:01 +00:00
* chore(deps): update dependencies * feat(tests): add matrix testing, problem matcher * feat(lint): add php-cs-fixer, fix codebase
12 lines
227 B
PHP
12 lines
227 B
PHP
<?php
|
|
|
|
namespace Superhelio\Commands\Tests\Stubs;
|
|
|
|
class ServiceProvider extends \Illuminate\Support\ServiceProvider
|
|
{
|
|
public function boot()
|
|
{
|
|
$this->loadMigrationsFrom(dirname(__DIR__).'/migrations');
|
|
}
|
|
}
|