Update deprecated faker calls in Asset and Supplier factories

This commit is contained in:
Marcus Moore 2023-03-02 13:41:52 -08:00
parent c3cc20fe0c
commit ad9eef6393
No known key found for this signature in database
2 changed files with 13 additions and 13 deletions

View file

@ -39,7 +39,7 @@ class AssetFactory extends Factory
return [
'name' => null,
'rtd_location_id' => Location::factory(),
'serial' => $this->faker->uuid,
'serial' => $this->faker->uuid(),
'status_id' => 1,
'user_id' => 1,
'asset_tag' => $this->faker->unixTime('now'),

View file

@ -39,18 +39,18 @@ class SupplierFactory extends Factory
public function definition()
{
return [
'name' => $this->faker->company,
'address' => $this->faker->streetAddress,
'address2' => $this->faker->secondaryAddress,
'city' => $this->faker->city,
'state' => $this->faker->stateAbbr,
'zip' => $this->faker->postCode,
'country' => $this->faker->countryCode,
'contact' => $this->faker->name,
'phone' => $this->faker->phoneNumber,
'fax' => $this->faker->phoneNumber,
'email' => $this->faker->safeEmail,
'url' => $this->faker->url,
'name' => $this->faker->company(),
'address' => $this->faker->streetAddress(),
'address2' => $this->faker->secondaryAddress(),
'city' => $this->faker->city(),
'state' => $this->faker->stateAbbr(),
'zip' => $this->faker->postCode(),
'country' => $this->faker->countryCode(),
'contact' => $this->faker->name(),
'phone' => $this->faker->phoneNumber(),
'fax' => $this->faker->phoneNumber(),
'email' => $this->faker->safeEmail(),
'url' => $this->faker->url(),
'notes' => $this->faker->text(191), // Supplier notes can be a max of 255 characters.
];
}