gossi\codegen\model\parts\PropertiesPart::getProperty PHP Метод

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

Returns a property
public getProperty ( string $nameOrProperty ) : PhpProperty
$nameOrProperty string property name
Результат gossi\codegen\model\PhpProperty
    public function getProperty($nameOrProperty)
    {
        if ($nameOrProperty instanceof PhpProperty) {
            $nameOrProperty = $nameOrProperty->getName();
        }
        if (!$this->properties->has($nameOrProperty)) {
            throw new \InvalidArgumentException(sprintf('The property "%s" does not exist.', $nameOrProperty));
        }
        return $this->properties->get($nameOrProperty);
    }