diff --git a/bridges/FeedReducerBridge.php b/bridges/FeedReducerBridge.php index c301d773..9c7d4f0d 100644 --- a/bridges/FeedReducerBridge.php +++ b/bridges/FeedReducerBridge.php @@ -54,7 +54,7 @@ class FeedReducerBridge extends FeedExpander { } public function getName(){ - $trimmedPercentage = preg_replace('/[^0-9]/', '', $this->getInput('percentage') || ''); + $trimmedPercentage = preg_replace('/[^0-9]/', '', $this->getInput('percentage', '')); return parent::getName() . ' [' . $trimmedPercentage . '%]'; } } diff --git a/lib/BridgeAbstract.php b/lib/BridgeAbstract.php index 82f866aa..8013cd81 100644 --- a/lib/BridgeAbstract.php +++ b/lib/BridgeAbstract.php @@ -291,11 +291,12 @@ abstract class BridgeAbstract implements BridgeInterface { * Returns the value for the provided input * * @param string $input The input name - * @return mixed|null The input value or null if the input is not defined + * @param string $default The default value, when input is not defined. Default to null + * @return mixed The input value or the default value if the input is not defined */ - protected function getInput($input){ + protected function getInput($input, $default = null){ if(!isset($this->inputs[$this->queriedContext][$input]['value'])) { - return null; + return $default; } return $this->inputs[$this->queriedContext][$input]['value']; }