@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | public function setOrderQuantity(int $new_order_quantity) : self |
| 114 | 114 | { |
| 115 | - if($new_order_quantity < 0) |
|
| 115 | + if ($new_order_quantity < 0) |
|
| 116 | 116 | { |
| 117 | 117 | throw new \InvalidArgumentException("The new order quantity must not be negative!"); |
| 118 | 118 | } |
@@ -139,6 +139,6 @@ discard block |
||
| 139 | 139 | */ |
| 140 | 140 | public function getIDString(): string |
| 141 | 141 | { |
| 142 | - return 'D' . sprintf('%09d', $this->getID()); |
|
| 142 | + return 'D'.sprintf('%09d', $this->getID()); |
|
| 143 | 143 | } |
| 144 | 144 | } |
| 145 | 145 | \ No newline at end of file |
@@ -67,6 +67,6 @@ |
||
| 67 | 67 | */ |
| 68 | 68 | public function getIDString(): string |
| 69 | 69 | { |
| 70 | - return 'M' . sprintf('%06d', $this->getID()); |
|
| 70 | + return 'M'.sprintf('%06d', $this->getID()); |
|
| 71 | 71 | } |
| 72 | 72 | } |
| 73 | 73 | \ No newline at end of file |
@@ -105,6 +105,6 @@ |
||
| 105 | 105 | */ |
| 106 | 106 | public function getIDString(): string |
| 107 | 107 | { |
| 108 | - return 'C' . sprintf('%09d', $this->getID()); |
|
| 108 | + return 'C'.sprintf('%09d', $this->getID()); |
|
| 109 | 109 | } |
| 110 | 110 | } |
@@ -75,8 +75,8 @@ |
||
| 75 | 75 | ->createAdapter(ORMAdapter::class, [ |
| 76 | 76 | 'entity' => Part::class, |
| 77 | 77 | 'criteria' => [ |
| 78 | - function (QueryBuilder $builder) use($options) { |
|
| 79 | - if(isset($options['cid'])) { |
|
| 78 | + function(QueryBuilder $builder) use($options) { |
|
| 79 | + if (isset($options['cid'])) { |
|
| 80 | 80 | $builder->andWhere('part.category = :cid') |
| 81 | 81 | ->setParameter('cid', $options['cid']); |
| 82 | 82 | } |
@@ -99,7 +99,7 @@ |
||
| 99 | 99 | */ |
| 100 | 100 | public function getIDString(): string |
| 101 | 101 | { |
| 102 | - return 'L' . sprintf('%06d', $this->getID()); |
|
| 102 | + return 'L'.sprintf('%06d', $this->getID()); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | } |
| 106 | 106 | \ No newline at end of file |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | */ |
| 49 | 49 | class Part extends AttachmentContainingDBElement |
| 50 | 50 | { |
| 51 | - const INSTOCK_UNKNOWN = -2; |
|
| 51 | + const INSTOCK_UNKNOWN = -2; |
|
| 52 | 52 | |
| 53 | 53 | /** |
| 54 | 54 | * @var Category |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | */ |
| 171 | 171 | public function getIDString(): string |
| 172 | 172 | { |
| 173 | - return 'P' . sprintf('%06d', $this->getID()); |
|
| 173 | + return 'P'.sprintf('%06d', $this->getID()); |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | foreach ($all_orderdetails as $orderdetails) { |
| 250 | - if (! $orderdetails->getObsolete()) { |
|
| 250 | + if (!$orderdetails->getObsolete()) { |
|
| 251 | 251 | return false; |
| 252 | 252 | } |
| 253 | 253 | } |
@@ -610,7 +610,7 @@ discard block |
||
| 610 | 610 | $prices = array(); |
| 611 | 611 | |
| 612 | 612 | foreach ($this->getOrderdetails($hide_obsolete) as $details) { |
| 613 | - $prices[] = $details->getPrice(! $float_array, $quantity, $multiplier); |
|
| 613 | + $prices[] = $details->getPrice(!$float_array, $quantity, $multiplier); |
|
| 614 | 614 | } |
| 615 | 615 | |
| 616 | 616 | if (\is_string($delimeter)) { |
@@ -828,7 +828,7 @@ discard block |
||
| 828 | 828 | */ |
| 829 | 829 | public function setInstockUnknown(bool $new_unknown) : self |
| 830 | 830 | { |
| 831 | - if($new_unknown == true) { |
|
| 831 | + if ($new_unknown == true) { |
|
| 832 | 832 | $this->instock = self::INSTOCK_UNKNOWN; |
| 833 | 833 | } else { |
| 834 | 834 | //Change only if instock is currently unknown. |
@@ -106,7 +106,7 @@ |
||
| 106 | 106 | $em->persist($new_part); |
| 107 | 107 | $em->flush(); |
| 108 | 108 | $this->addFlash('success', $translator->trans('part.created_flash')); |
| 109 | - return $this->redirectToRoute('part_edit',['id' => $new_part->getID()]); |
|
| 109 | + return $this->redirectToRoute('part_edit', ['id' => $new_part->getID()]); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | |