예제 #1
0
 /**
  * Get the specified configuration value of the virtual host object
  *
  * @param string $key
  *
  * @param bool   $default
  *
  * @return mixed
  */
 public function get($key = null, $default = false)
 {
     if (($default || !$this->configRepository->has('apache.' . $key)) && $this->configRepository->has('default.' . $key)) {
         return $this->configRepository->get('default.' . $key);
     }
     if ($this->configRepository->has('apache.' . $key)) {
         return $this->configRepository->get('apache.' . $key);
     }
     return $this->configRepository->all();
 }
예제 #2
0
 public function testReturnCompleteConfigurationList()
 {
     $configRepository = new Repository($this->defaults);
     $this->assertEquals($this->defaults, $configRepository->all());
 }