Flake\Core\Model::get PHP Method

get() public method

public get ( $sPropName )
    function get($sPropName)
    {
        if (array_key_exists($sPropName, $this->aData)) {
            return $this->aData[$sPropName];
        }
        throw new \Exception("\\Flake\\Core\\Model->get(): property " . htmlspecialchars($sPropName) . " does not exist on " . get_class($this));
    }