私は、Laravel 5.3のバージョンを持ち、Laravel Infyom Generatorを使っているプロジェクトに取り組んでいます。どうにかこれらの特性や(ApiTest、RepositoryTestなどの)テストファイルを生成しました。私が実行しようとするとPHPUNIT私はこのエラーが表示されます誰かが私がこのエラーが表示されている理由を見つけるのを助けることができますか?Laravel Trait not found PHP致命的なエラー
PHP Fatal error: Trait 'MakeCustomerTrait' not found in C:\Users\ahmed\dev\gamla\tests\CustomerApiTest.php on line 8
Fatal error: Trait 'MakeCustomerTrait' not found in C:\Users\ahmed\dev\gamla\tests\CustomerApiTest.php on line 8
私のプロジェクトに新しいテストを作成したいのですが、これらのファイルを削除する必要がありますか?それは私にそのエラーを与え続けるので? CustomerApiTestコードの
MakeCustomerTrait
<?php
use Faker\Factory as Faker;
use App\Models\Customer;
use App\Repositories\CustomerRepository;
trait MakeCustomerTrait
{
/**
* Create fake instance of Customer and save it in database
*
* @param array $customerFields
* @return Customer
*/
public function makeCustomer($customerFields = [])
{
/** @var CustomerRepository $customerRepo */
$customerRepo = App::make(CustomerRepository::class);
$theme = $this->fakeCustomerData($customerFields);
return $customerRepo->create($theme);
}
/**
* Get fake instance of Customer
*
* @param array $customerFields
* @return Customer
*/
public function fakeCustomer($customerFields = [])
{
return new Customer($this->fakeCustomerData($customerFields));
}
/**
* Get fake data of Customer
*
* @param array $postFields
* @return array
*/
public function fakeCustomerData($customerFields = [])
{
$fake = Faker::create();
return array_merge([
'name' => $fake->word,
'address_street' => $fake->word,
'address_zip' => $fake->word,
'address_city' => $fake->word,
'address_country' => $fake->word,
'shipping_address_street' => $fake->word,
'shipping_address_zip' => $fake->word,
'shipping_address_city' => $fake->word,
'shipping_address_country' => $fake->word,
'contact_person_id' => $fake->randomDigitNotNull,
'created_at' => $fake->word,
'updated_at' => $fake->word
], $customerFields);
}
}
特性の完全な名前空間を使用するか、ファイルのuse文で定義します。グローバルな名前空間では '\ MakeCustomerTrait'のように使用します。 –
あなたはそれをここに書いて、あなたが意味することを理解できますか? –
私はコメントを更新しました。それが動作するかどうか確認してください。 –