MetaModels\Item::get PHP Метод

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

Return the native value of an attribute.
public get ( string $strAttributeName ) : mixed
$strAttributeName string The name of the attribute.
Результат mixed
    public function get($strAttributeName)
    {
        return array_key_exists($strAttributeName, $this->arrData) ? $this->arrData[$strAttributeName] : null;
    }