/**
  * @param $key string
  * @return Mixed
  */
 public function get($key)
 {
     wfProfileIn(__METHOD__);
     $this->debugLog("get({$key})");
     $value = $this->checkResult($key, parent::get($key));
     wfProfileOut(__METHOD__);
     return $value;
 }
Exemplo n.º 2
0
 /**
  * @param $key string
  * @return Mixed
  */
 public function get($key)
 {
     $this->debugLog("get({$key})");
     return $this->checkResult($key, parent::get($key));
 }