Files
commands/tests/Stubs/ServiceProvider.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');
}
}