for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sfneal\Testing\Providers;
use Illuminate\Support\ServiceProvider;
class MockModelsServiceProvider extends ServiceProvider
{
public function boot()
// Publish migration file (if not already published)
if (! class_exists('CreatePeopleTable')) {
$this->publishes([
__DIR__.'/../database/migrations/create_people_table.php.stub' => database_path(
'migrations/'.date('Y_m_d_His', time()).'_create_people_table.php'
),
], 'migration');
}