Sulu\Component\Content\ComplexContentType::__get PHP Method

__get() public method

public __get ( $property )
    public function __get($property)
    {
        if (method_exists($this, 'get' . ucfirst($property))) {
            return $this->{'get' . ucfirst($property)}();
        } else {
            return;
        }
    }