get() public method

public get ( $name )
Example #1
0
 /**
  * Returns the default stage
  *
  * @return string|null
  */
 public function getDefaultStage()
 {
     if (!$this->parameters->has(self::PARAM_DEFAULT_STAGE)) {
         return null;
     }
     return $this->parameters->get(self::PARAM_DEFAULT_STAGE);
 }
Example #2
0
 /**
  * @param string $name
  * @return ServerInterface
  */
 public function get($name)
 {
     return parent::get($name);
 }