mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 10:07:12 +00:00
* [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:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user