Files
commands/tests/Stubs/ServiceProvider.php
Ismo Vuorinen c0ba631f42 PSR2 fixes
2021-01-20 14:18:42 +02:00

12 lines
229 B
PHP

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