@@ -55,8 +55,8 @@ discard block |
||
55 | 55 | */ |
56 | 56 | public function getPrefixByMagnitude(int $magnitude) : array |
57 | 57 | { |
58 | - $prefixes_pos = ['' ,'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y']; |
|
59 | - $prefixes_neg = ['' ,'m', 'μ', 'n', 'p', 'f', 'a', 'z', 'y']; |
|
58 | + $prefixes_pos = ['', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y']; |
|
59 | + $prefixes_neg = ['', 'm', 'μ', 'n', 'p', 'f', 'a', 'z', 'y']; |
|
60 | 60 | |
61 | 61 | //Determine nearest prefix index. |
62 | 62 | $nearest = (int) round(abs($magnitude) / 3); |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | [$divisor, $symbol] = $this->getPrefixByMagnitude($this->getMagnitude($value)); |
86 | 86 | $value /= $divisor; |
87 | 87 | //Build the format string, e.g.: %.2d km |
88 | - $format_string = '%.' . $decimals . 'f ' . $symbol . $unit; |
|
88 | + $format_string = '%.'.$decimals.'f '.$symbol.$unit; |
|
89 | 89 | |
90 | 90 | return sprintf($format_string, $value); |
91 | 91 | } |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | */ |
275 | 275 | public function getIDString(): string |
276 | 276 | { |
277 | - return 'P' . sprintf('%06d', $this->getID()); |
|
277 | + return 'P'.sprintf('%06d', $this->getID()); |
|
278 | 278 | } |
279 | 279 | |
280 | 280 | /********************************************************************************* |
@@ -701,7 +701,7 @@ discard block |
||
701 | 701 | { |
702 | 702 | //TODO: Find a method to do this natively in SQL, the current method could be a bit slow |
703 | 703 | $sum = 0; |
704 | - foreach($this->getPartLots() as $lot) { |
|
704 | + foreach ($this->getPartLots() as $lot) { |
|
705 | 705 | //Dont use the instock value, if it is unkown |
706 | 706 | if ($lot->isInstockUnknown()) { |
707 | 707 | continue; |
@@ -710,7 +710,7 @@ discard block |
||
710 | 710 | $sum += $lot->getAmount(); |
711 | 711 | } |
712 | 712 | |
713 | - if(!$this->useFloatAmount()) { |
|
713 | + if (!$this->useFloatAmount()) { |
|
714 | 714 | return $sum; |
715 | 715 | } |
716 | 716 |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | */ |
116 | 116 | public function getIDString(): string |
117 | 117 | { |
118 | - return 'PL' . $this->getID(); |
|
118 | + return 'PL'.$this->getID(); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | /** |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | |
269 | 269 | public function setAmount(float $new_amount): PartLot |
270 | 270 | { |
271 | - $this->amount = $new_amount; |
|
271 | + $this->amount = $new_amount; |
|
272 | 272 | return $this; |
273 | 273 | } |
274 | 274 |
@@ -78,7 +78,7 @@ |
||
78 | 78 | |
79 | 79 | /* If any group change, then invalidate all cached trees. Users Permissions can be inherited from groups, |
80 | 80 | so a change in any group can cause big permisssion changes for users. So to be sure, invalidate all trees */ |
81 | - if($element instanceof Group) { |
|
81 | + if ($element instanceof Group) { |
|
82 | 82 | $tag = "groups"; |
83 | 83 | $this->cache->invalidateTags([$tag]); |
84 | 84 | } |
@@ -64,10 +64,10 @@ |
||
64 | 64 | //If the user is null, then treat it as anonymous user. |
65 | 65 | //When the anonymous user is passed as user then use this path too. |
66 | 66 | if ($user === null || $user->getID() === User::ID_ANONYMOUS) { |
67 | - return 'user$_' . User::ID_ANONYMOUS; |
|
67 | + return 'user$_'.User::ID_ANONYMOUS; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | //In the most cases we can just use the username (its unique) |
71 | - return "user_" . $user->getUsername(); |
|
71 | + return "user_".$user->getUsername(); |
|
72 | 72 | } |
73 | 73 | } |
74 | 74 | \ No newline at end of file |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | |
103 | 103 | $tree_node = new TreeViewNode($element->__toString(), $href, $children_nodes); |
104 | 104 | |
105 | - if($children_nodes != null) { |
|
105 | + if ($children_nodes != null) { |
|
106 | 106 | $tree_node->addTag((string) count($children_nodes)); |
107 | 107 | } |
108 | 108 | |
@@ -177,9 +177,9 @@ discard block |
||
177 | 177 | $parent_id = $parent != null ? $parent->getID() : "0"; |
178 | 178 | // Backslashes are not allowed in cache keys |
179 | 179 | $secure_class_name = str_replace("\\", '_', $class_name); |
180 | - $key = "list_" . $this->keyGenerator->generateKey() . "_" . $secure_class_name . $parent_id; |
|
180 | + $key = "list_".$this->keyGenerator->generateKey()."_".$secure_class_name.$parent_id; |
|
181 | 181 | |
182 | - $ret = $this->cache->get($key, function (ItemInterface $item) use ($class_name, $parent, $secure_class_name) { |
|
182 | + $ret = $this->cache->get($key, function(ItemInterface $item) use ($class_name, $parent, $secure_class_name) { |
|
183 | 183 | // Invalidate when groups, a element with the class or the user changes |
184 | 184 | $item->tag(['groups', 'tree_list', $this->keyGenerator->generateKey(), $secure_class_name]); |
185 | 185 | /** |
@@ -66,9 +66,9 @@ |
||
66 | 66 | */ |
67 | 67 | public function getTree() : array |
68 | 68 | { |
69 | - $key = "tree_tools_" . $this->keyGenerator->generateKey(); |
|
69 | + $key = "tree_tools_".$this->keyGenerator->generateKey(); |
|
70 | 70 | |
71 | - return $this->cache->get($key, function (ItemInterface $item) { |
|
71 | + return $this->cache->get($key, function(ItemInterface $item) { |
|
72 | 72 | //Invalidate tree, whenever group or the user changes |
73 | 73 | $item->tag(["tree_tools", "groups", $this->keyGenerator->generateKey()]); |
74 | 74 |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | $em->flush(); |
96 | 96 | //$this->addFlash('success', $translator->trans('part.created_flash')); |
97 | 97 | |
98 | - return $this->redirectToRoute($this->route_base . '_edit', ['id' => $new_entity->getID()]); |
|
98 | + return $this->redirectToRoute($this->route_base.'_edit', ['id' => $new_entity->getID()]); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | //Import form |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | |
115 | 115 | foreach ($errors as $name => $error) { |
116 | 116 | /** @var $error ConstraintViolationList */ |
117 | - $this->addFlash('error', $name . ':' . $error); |
|
117 | + $this->addFlash('error', $name.':'.$error); |
|
118 | 118 | } |
119 | 119 | } |
120 | 120 | |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | //Show errors to user: |
134 | 134 | foreach ($errors as $name => $error) { |
135 | 135 | /** @var $error ConstraintViolationList */ |
136 | - $this->addFlash('error', $name . ':' . $error); |
|
136 | + $this->addFlash('error', $name.':'.$error); |
|
137 | 137 | } |
138 | 138 | } |
139 | 139 | |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | $this->addFlash('success', 'attachment_type.deleted'); |
175 | 175 | } |
176 | 176 | |
177 | - return $this->redirectToRoute($this->route_base . '_new'); |
|
177 | + return $this->redirectToRoute($this->route_base.'_new'); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | protected function _exportAll(EntityManagerInterface $em, EntityExporter $exporter, Request $request) |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | |
186 | 186 | $entities = $em->getRepository($this->entity_class)->findAll(); |
187 | 187 | |
188 | - return $exporter->exportEntityFromRequest($entities,$request); |
|
188 | + return $exporter->exportEntityFromRequest($entities, $request); |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | protected function _exportEntity(NamedDBElement $entity, EntityExporter $exporter, Request $request) |
@@ -61,7 +61,7 @@ |
||
61 | 61 | 'disable_not_selectable' => true, |
62 | 62 | 'attr' => ['class' => 'selectpicker form-control-sm', 'data-live-search' => true]]); |
63 | 63 | |
64 | - $builder->add('amount',NumberType::class, [ 'html5' => true, |
|
64 | + $builder->add('amount', NumberType::class, ['html5' => true, |
|
65 | 65 | 'label' => 'part_lot.edit.amount', |
66 | 66 | 'attr' => ['class' => 'form-control-sm', 'min' => 0, 'step' => 'any'] |
67 | 67 | ]); |