2020-11-03 17:18:31 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
2024-08-02 22:23:31 -05:00
|
|
|
/** @extends Factory<\App\Models\OspfPort> */
|
2020-11-03 17:18:31 +01:00
|
|
|
class OspfPortFactory extends Factory
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Define the model's default state.
|
|
|
|
|
*/
|
2023-05-24 22:21:54 +02:00
|
|
|
public function definition(): array
|
2020-11-03 17:18:31 +01:00
|
|
|
{
|
|
|
|
|
return [
|
2021-07-13 16:35:43 -05:00
|
|
|
'id' => $this->faker->randomDigit(),
|
|
|
|
|
'ospf_port_id' => $this->faker->randomDigit(),
|
2022-09-01 19:31:25 +02:00
|
|
|
'ospfIfIpAddress' => $this->faker->ipv4(),
|
2021-07-13 16:35:43 -05:00
|
|
|
'ospfAddressLessIf' => $this->faker->randomDigit(),
|
2020-11-03 17:18:31 +01:00
|
|
|
'ospfIfAreaId' => '0.0.0.0',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|