Exemplo n.º 1
0
 /**
  * @return array
  */
 public function getStockTypes()
 {
     $types = [];
     $stockTypes = $this->queryContainer->queryAllStockTypes()->find();
     foreach ($stockTypes as $stockType) {
         $types[] = $stockType->getName();
     }
     return $types;
 }