Files
commands/tests/Stubs/ServiceProvider.php
2017-02-10 09:48:40 +02:00

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'));
}
}