コード例 #1
0
 /**
  * {@inheritdoc}
  */
 public function execute($ids)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute');
     if (!$pluginInfo) {
         return parent::execute($ids);
     } else {
         return $this->___callPlugins('execute', func_get_args(), $pluginInfo);
     }
 }
コード例 #2
0
 public function testExecuteRow()
 {
     $except = 5;
     $this->productFlatIndexerRow->expects($this->any())->method('execute')->with($this->equalTo($except));
     $this->model->executeRow($except);
 }