-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcisco_amp_factory.php
More file actions
26 lines (23 loc) · 1004 Bytes
/
cisco_amp_factory.php
File metadata and controls
26 lines (23 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
// Database seeder
// Please visit https://github.com/fzaninotto/Faker for more options
/** @var \Illuminate\Database\Eloquent\Factory $factory */
$factory->define(Cisco_amp_model::class, function (Faker\Generator $faker) {
return [
'status' => $faker->word(),
'mode' => $faker->word(),
'scan' => $faker->word(),
'last_scan' => $faker->randomNumber($nbDigits = 4, $strict = false),
'policy' => $faker->word(),
'command_line' => $faker->word(),
'faults' => $faker->,
'quarantine_behavior' => $faker->word(),
'protection' => $faker->,
'proxy' => $faker->word(),
'notifications' => $faker->word(),
'last_update' => $faker->randomNumber($nbDigits = 4, $strict = false),
'definition_version' => $faker->word(),
'definition_last_updated' => $faker->randomNumber($nbDigits = 4, $strict = false),
'app_version' => $faker->randomNumber($nbDigits = 4, $strict = false),
];
});