/var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Foundation/Testing
NameSizeModeActions
Concerns/-0755rm
DatabaseMigrations.php5570644editdlrm
DatabaseTransactions.php14200644editdlrm
RefreshDatabase.php44550644editdlrm
RefreshDatabaseState.php2140644editdlrm
TestCase.php63170644editdlrm
WithFaker.php11560644editdlrm
WithoutEvents.php4560644editdlrm
WithoutMiddleware.php5000644editdlrm
Wormhole.php31100644editdlrm
Edit: /var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Foundation/Testing/WithFaker.php (1156B)
faker = $this->makeFaker(); } /** * Get the default Faker instance for a given locale. * * @param string|null $locale * @return \Faker\Generator */ protected function faker($locale = null) { return is_null($locale) ? $this->faker : $this->makeFaker($locale); } /** * Create a Faker instance for the given locale. * * @param string|null $locale * @return \Faker\Generator */ protected function makeFaker($locale = null) { $locale = $locale ?? config('app.faker_locale', Factory::DEFAULT_LOCALE); if (isset($this->app) && $this->app->bound(Generator::class)) { return $this->app->make(Generator::class, ['locale' => $locale]); } return Factory::create($locale); } }