Exemplo n.º 1
0
 public static function getVariable(Input $input = null, $default = '', $optionName = false, $envName = false)
 {
     $value = null;
     if ($optionName && $input && $input->hasOption($optionName)) {
         $value = $input->getOption($optionName);
     }
     if ($value === null) {
         if ($envName) {
             $value = getenv($envName);
         }
         if (!$value) {
             $value = $default;
         }
     }
     return $value === null ? '' : $value;
 }