<?php array_key_exists(string|int|float|bool|resource|null $key, array $array): bool
<?php public function has($key): bool { return array_key_exists($key, $this->attributes); } public function attributes(): array
<?php $attributes = []; foreach ($this->expectedOrder as $key) { if (array_key_exists($key, $this->attributes) && $this->attributes[$key] !== null) { $attributes[$key] = $this->attributes[$key]; } }
<?php public function offsetExists(mixed $offset): bool { return array_key_exists($offset, $this->attributes); }