Eloquent\Phony\Spy\ArraySpy::offsetExists PHP Метод

offsetExists() публичный Метод

Check if a key exists.
public offsetExists ( mixed $key ) : boolean
$key mixed The key.
Результат boolean True if the key exists.
    public function offsetExists($key)
    {
        return isset($this->array[$key]);
    }