AppserverIo\Appserver\Core\Api\Node\ParamsNodeTrait::getParam PHP Метод

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

Returns the param with the passed name casted to the specified type.
public getParam ( string $name ) : mixed
$name string The name of the param to be returned
Результат mixed The requested param casted to the specified type
    public function getParam($name)
    {
        $params = $this->getParamsAsArray();
        if (array_key_exists($name, $params)) {
            return $params[$name];
        }
    }