예제 #1
0
 /**
  * {@inheritDoc}
  */
 public function hasQuery($name)
 {
     if (isset($this->queries[$name])) {
         return true;
     }
     return $this->loader->hasQuery($name);
 }
예제 #2
0
 /**
  * {@inheritDoc}
  */
 public function hasQuery($name)
 {
     if (apc_exists($this->getApcName($name))) {
         return true;
     }
     return $this->loader->hasQuery($name);
 }