get() 공개 메소드

public get ( $name )
예제 #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);
 }
예제 #2
0
 /**
  * @param string $name
  * @return ServerInterface
  */
 public function get($name)
 {
     return parent::get($name);
 }