![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/corals-api/vendor/orchestra/testbench-core/src/Concerns/ |
<?php namespace Orchestra\Testbench\Concerns; use Exception; use Illuminate\Database\Eloquent\Factory as ModelFactory; trait WithFactories { /** * Load model factories from path. * * @param string $path * * @return $this */ protected function withFactories(string $path) { return $this->loadFactoriesUsing($this->app, $path); } /** * Load model factories from path using Application. * * @param \Illuminate\Contracts\Foundation\Application $app * @param string $path * * @return $this */ protected function loadFactoriesUsing($app, string $path) { if (! \class_exists(ModelFactory::class)) { throw new Exception(<<<'requirement' Missing `laravel/legacy-factories` in composer.json. Please refer to <https://github.com/orchestral/testbench/blob/6.x/README.md#using-legacy-factories> requirement); } $app->make(ModelFactory::class)->load($path); return $this; } }