for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thomasdominic\EloquentModelTestor;
trait HasModelTestor
{
public function modelTestable(string $modelClass, ?string $table = null)
return new ModelTestor($modelClass, $table);
}
public function tableTestable(string $table)
return new ModelTestor(null, $table);