Exemplo n.º 1
0
 /**
  * @return $this
  */
 public function perform()
 {
     foreach ($this->locator->getReferenceList() as $reference) {
         $this->applyReference($reference);
         if ($this->isResultSet()) {
             break;
         }
     }
     return $this;
 }
Exemplo n.º 2
0
 /**
  * @return Locator
  */
 protected function getLocatorBuffer() : Locator
 {
     if (null === $this->locatorBuffer) {
         $this->locatorBuffer = Locator::factory();
     }
     return $this->locatorBuffer;
 }