create() public method

{@inheritDoc}
public create ( array $data )
$data array
Example #1
0
 /**
  * {@inheritDoc}
  */
 public function getItems()
 {
     $result = [];
     foreach ($this->productCollection as $product) {
         $result[] = $this->itemFactory->create(['product' => $product, 'type' => $this->getType()]);
     }
     return $result;
 }