records = [ [ 'id' => self::BROOD_A_ID, 'uuid' => $faker->uuid(), 'name' => 'Brood A', 'url' => $faker->url, 'description' => $faker->text, 'organisation_id' => OrganisationsFixture::ORGANISATION_A_ID, 'trusted' => true, 'pull' => true, 'skip_proxy' => true, 'authkey' => self::BROOD_A_API_KEY, 'created' => $faker->dateTime()->getTimestamp(), 'modified' => $faker->dateTime()->getTimestamp() ], [ 'id' => self::BROOD_B_ID, 'uuid' => $faker->uuid(), 'name' => 'Brood A', 'url' => $faker->url, 'description' => $faker->text, 'organisation_id' => OrganisationsFixture::ORGANISATION_B_ID, 'trusted' => true, 'pull' => true, 'skip_proxy' => true, 'authkey' => self::BROOD_B_API_KEY, 'created' => $faker->dateTime()->getTimestamp(), 'modified' => $faker->dateTime()->getTimestamp() ], [ 'id' => self::BROOD_WIREMOCK_ID, 'uuid' => $faker->uuid(), 'name' => 'wiremock', 'url' => 'http://localhost:8080', 'description' => $faker->text, 'organisation_id' => OrganisationsFixture::ORGANISATION_B_ID, 'trusted' => true, 'pull' => true, 'skip_proxy' => true, 'authkey' => self::BROOD_WIREMOCK_API_KEY, 'created' => $faker->dateTime()->getTimestamp(), 'modified' => $faker->dateTime()->getTimestamp() ] ]; parent::init(); } }