initialParse($configuration)); $rawRecords = array_filter($rawRecords, [$this, 'filter01']); $this->records = $rawRecords; } /** * Skip users 0 and 1 in imports, as they are core-provided. * * @param array $record * The description of a user entity. * * @return bool * Include it (1) or filter it (0). */ protected function filter01(array $record) { return ($record['uid'] ?? 0) > 1; } /** * {@inheritdoc} */ public function getIds() { $ids = [ 'uid' => [ 'type' => 'integer', ], ]; return $ids; } }