@@ -80,9 +80,9 @@ |
||
80 | 80 | public function onRegister(RegisterEvent $event): void |
81 | 81 | { |
82 | 82 | //Skip adding of U2F key on demo mode |
83 | - if (! $this->demo_mode) { |
|
83 | + if (!$this->demo_mode) { |
|
84 | 84 | $user = $event->getUser(); |
85 | - if (! $user instanceof User) { |
|
85 | + if (!$user instanceof User) { |
|
86 | 86 | throw new \InvalidArgumentException('Only User objects can be registered for U2F!'); |
87 | 87 | } |
88 | 88 |
@@ -269,11 +269,11 @@ discard block |
||
269 | 269 | { |
270 | 270 | unset($fields['lastModified']); |
271 | 271 | |
272 | - if (! $this->hasFieldRestrictions($element)) { |
|
272 | + if (!$this->hasFieldRestrictions($element)) { |
|
273 | 273 | return $fields; |
274 | 274 | } |
275 | 275 | |
276 | - return array_filter($fields, function ($value, $key) use ($element) { |
|
276 | + return array_filter($fields, function($value, $key) use ($element) { |
|
277 | 277 | //Associative array (save changed data) case |
278 | 278 | if (is_string($key)) { |
279 | 279 | return $this->shouldFieldBeSaved($element, $key); |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | { |
288 | 288 | $uow = $em->getUnitOfWork(); |
289 | 289 | |
290 | - if (! $logEntry instanceof ElementEditedLogEntry && ! $logEntry instanceof ElementDeletedLogEntry) { |
|
290 | + if (!$logEntry instanceof ElementEditedLogEntry && !$logEntry instanceof ElementDeletedLogEntry) { |
|
291 | 291 | throw new \InvalidArgumentException('$logEntry must be ElementEditedLogEntry or ElementDeletedLogEntry!'); |
292 | 292 | } |
293 | 293 | |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | $old_data = $this->filterFieldRestrictions($entity, $old_data); |
301 | 301 | |
302 | 302 | //Restrict length of string fields, to save memory... |
303 | - $old_data = array_map(function ($value) { |
|
303 | + $old_data = array_map(function($value) { |
|
304 | 304 | if (is_string($value)) { |
305 | 305 | return mb_strimwidth($value, 0, self::MAX_STRING_LENGTH, '...'); |
306 | 306 | } |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | protected function validEntity(object $entity): bool |
320 | 320 | { |
321 | 321 | //Dont log logentries itself! |
322 | - if ($entity instanceof AbstractDBElement && ! $entity instanceof AbstractLogEntry) { |
|
322 | + if ($entity instanceof AbstractDBElement && !$entity instanceof AbstractLogEntry) { |
|
323 | 323 | return true; |
324 | 324 | } |
325 | 325 |