@@ -20,7 +20,6 @@ |
||
20 | 20 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; |
21 | 21 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
22 | 22 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; |
23 | - |
|
24 | 23 | use AppBundle\Entity\Inventory; |
25 | 24 | use AppBundle\Form\Type\InventoryType; |
26 | 25 | use AppBundle\Entity\InventoryArticles; |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | /** |
155 | 155 | * Get amount |
156 | 156 | * |
157 | - * @return string |
|
157 | + * @return double |
|
158 | 158 | */ |
159 | 159 | public function getAmount() |
160 | 160 | { |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | /** |
178 | 178 | * Get status |
179 | 179 | * |
180 | - * @return integer |
|
180 | + * @return boolean |
|
181 | 181 | */ |
182 | 182 | public function getStatus() |
183 | 183 | { |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | /** |
211 | 211 | * Get articles |
212 | 212 | * |
213 | - * @return \Doctrine\Common\Collections\Collection |
|
213 | + * @return string |
|
214 | 214 | */ |
215 | 215 | public function getArticles() |
216 | 216 | { |
@@ -209,7 +209,7 @@ |
||
209 | 209 | /** |
210 | 210 | * Get unit_storage |
211 | 211 | * |
212 | - * @return \AppBundle\Entity\UnitStorage |
|
212 | + * @return string |
|
213 | 213 | */ |
214 | 214 | public function getUnitStorage() |
215 | 215 | { |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace AppBundle\Entity; |
4 | 4 | |
5 | 5 | use Doctrine\ORM\Mapping as ORM; |
6 | -use Doctrine\Common\Collections\ArrayCollection; |
|
7 | 6 | |
8 | 7 | /** |
9 | 8 | * InventoryArticles |