[LARAVEL 8] include_factory_builders does not work anymore (#1047) (#1049)

* [LARAVEL 8] include_factory_builders does not work anymore (#1047)

* Change skip expression
Append comment about deprecated to config file
Append comment about deprecated to README file
This commit is contained in:
Igor Finagin
2020-09-20 08:36:35 +02:00
committed by GitHub
parent 2ff9672a49
commit fd4d280a80
4 changed files with 35 additions and 7 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Factories;
use Barryvdh\LaravelIdeHelper\Factories;
use PHPUnit\Framework\TestCase;
class AllTest extends TestCase
{
public function testAll(): void
{
$factories = Factories::all();
self::assertEmpty($factories);
}
}