Testing Orchestra/TestBench workflow

This commit is contained in:
Ismo Vuorinen
2017-02-10 09:48:40 +02:00
parent 3d236cb55e
commit ab0a5a8d9d
5 changed files with 104 additions and 3 deletions

View File

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