mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-17 17:47:13 +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
19 lines
323 B
PHP
19 lines
323 B
PHP
<?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);
|
|
}
|
|
}
|