Gc\Module\AbstractPlugin::getParam PHP Method

getParam() public method

Returns param from name.
public getParam ( string $name ) : mixed
$name string Parameter name
return mixed
    public function getParam($name)
    {
        if (isset($this->pluginParameters[$name])) {
            return $this->pluginParameters[$name];
        }
        return null;
    }