records = [ [ 'id' => self::USER_ADMIN_ID, 'uuid' => $faker->uuid(), 'email' => self::USER_ADMIN_EMAIL, 'password' => $hasher->hash(self::USER_ADMIN_PASSWORD), 'role_id' => RolesFixture::ROLE_ADMIN_ID, 'disabled' => 0, 'org_id' => OrganisationsFixture::ORGANISATION_A_ID, 'date_created' => $faker->dateTime()->getTimestamp(), 'date_modified' => $faker->dateTime()->getTimestamp(), ], [ 'id' => self::USER_SYNC_ID, 'uuid' => $faker->uuid(), 'email' => self::USER_SYNC_EMAIL, 'password' => $hasher->hash(self::USER_SYNC_PASSWORD), 'role_id' => RolesFixture::ROLE_SYNC_ID, 'disabled' => 0, 'org_id' => OrganisationsFixture::ORGANISATION_A_ID, 'date_created' => $faker->dateTime()->getTimestamp(), 'date_modified' => $faker->dateTime()->getTimestamp(), ], [ 'id' => self::USER_ORG_ADMIN_ID, 'uuid' => $faker->uuid(), 'email' => self::USER_ORG_ADMIN_EMAIL, 'password' => $hasher->hash(self::USER_ORG_ADMIN_PASSWORD), 'role_id' => RolesFixture::ROLE_ORG_ADMIN_ID, 'disabled' => 0, 'org_id' => OrganisationsFixture::ORGANISATION_A_ID, 'date_created' => $faker->dateTime()->getTimestamp(), 'date_modified' => $faker->dateTime()->getTimestamp(), ], [ 'id' => self::USER_REGULAR_USER_ID, 'uuid' => $faker->uuid(), 'email' => self::USER_REGULAR_USER_EMAIL, 'password' => $hasher->hash(self::USER_REGULAR_USER_PASSWORD), 'role_id' => RolesFixture::ROLE_REGULAR_USER_ID, 'disabled' => 0, 'org_id' => OrganisationsFixture::ORGANISATION_A_ID, 'date_created' => $faker->dateTime()->getTimestamp(), 'date_modified' => $faker->dateTime()->getTimestamp(), ], ]; parent::init(); } }