Todaymade\Daux\Tree\Directory::offsetExists PHP Метод

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

Whether a offset exists
public offsetExists ( mixed $offset ) : boolean
$offset mixed An offset to check for.
Результат boolean true on success or false on failure.
    public function offsetExists($offset)
    {
        return array_key_exists($offset, $this->children);
    }