コード例 #1
0
ファイル: Eav.php プロジェクト: aiesh/magento2
 /**
  * Execute partial indexation by ID list
  *
  * @param int[] $ids
  * @return void
  */
 public function executeList($ids)
 {
     $this->_productEavIndexerRows->execute($ids);
 }
コード例 #2
0
ファイル: RowsTest.php プロジェクト: Doability/magento2dev
 /**
  * @expectedException \Magento\Framework\Exception\InputException
  * @expectedExceptionMessage Bad value was supplied.
  */
 public function testEmptyIds()
 {
     $this->_model->execute(null);
 }