Kimai_ArrayObject::get PHP Method

get() public method

public get ( $key, mixed $default = null ) : mixed | null
$key
$default mixed
return mixed | null
    public function get($key, $default = null)
    {
        if ($this->has($key)) {
            return $this->offsetGet($key);
        }
        return $default;
    }
Kimai_ArrayObject