Neos\Fusion\TypoScriptObjects\AbstractTypoScriptObject::offsetExists PHP 메소드

offsetExists() 공개 메소드

Dummy implementation of ArrayAccess to allow this.XXX access in processors.
public offsetExists ( mixed $offset ) : boolean
$offset mixed
리턴 boolean
    public function offsetExists($offset)
    {
        return $this->tsValue($offset) !== null;
    }