Files
commands/tests/Stubs/ServiceProvider.php
Ismo Vuorinen 9ca5301b77 CS
2017-11-22 11:56:49 +02:00

11 lines
229 B
PHP

<?php
namespace Superhelio\Commands\Tests\Stubs;
class ServiceProvider extends \Illuminate\Support\ServiceProvider
{
public function boot()
{
$this->loadMigrationsFrom(\dirname(__DIR__) . '/migrations');
}
}