Completed
Push — master ( 05a043...a79f71 )
by Tim
15:11
created
Classes/Annotation/SignalPriority.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace HDNET\Autoloader\Annotation;
6 6
 
Please login to merge, or discard this patch.
Classes/Service/SmartObjectInformationService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * SmartObjectInformationService.php.
5 5
  */
6
-declare(strict_types = 1);
6
+declare(strict_types=1);
7 7
 
8 8
 namespace HDNET\Autoloader\Service;
9 9
 
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
         $reflectionConfiguration = ReflectionUtility::getTagConfigurationForClass($modelClassName, ['key']);
348 348
         if (!empty($reflectionConfiguration['key'])) {
349 349
             $additionalKeys = $reflectionConfiguration['key'];
350
-            array_walk($additionalKeys, function (&$item): void {
350
+            array_walk($additionalKeys, function(&$item): void {
351 351
                 $item = 'KEY ' . $item;
352 352
             });
353 353
             $fields = array_merge($fields, $additionalKeys);
Please login to merge, or discard this patch.