Exemplo n.º 1
0
 protected function workOnConcept(Title $title)
 {
     $concept = $this->store->getConceptCacheStatus($title);
     if ($this->skipConcept($title, $concept)) {
         return $this->lines += $this->verbose ? 1 : 0;
     }
     $result = $this->performAction($title, $concept);
     if ($result) {
         $this->reportMessage('  ' . implode($result, "\n  ") . "\n");
     }
     return $this->lines += 1;
 }
Exemplo n.º 2
0
 /**
  * @see Store::getConceptCacheStatus()
  * @since 1.8
  */
 public function getConceptCacheStatus($concept)
 {
     return $this->baseStore->getConceptCacheStatus($concept);
 }