Completed
Push — master ( a79f71...19c9d7 )
by Tim
12:15
created
Classes/Utility/TcaUtility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  *
6 6
  * General file information
7 7
  */
8
-declare(strict_types = 1);
8
+declare(strict_types=1);
9 9
 
10 10
 namespace HDNET\Autoloader\Utility;
11 11
 
Please login to merge, or discard this patch.
Classes/Utility/ClassNamingUtility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * ClassNamingUtility.php.
5 5
  */
6
-declare(strict_types = 1);
6
+declare(strict_types=1);
7 7
 
8 8
 namespace HDNET\Autoloader\Utility;
9 9
 
Please login to merge, or discard this patch.
Classes/Utility/IconUtility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * Icon helper.
5 5
  */
6
-declare(strict_types = 1);
6
+declare(strict_types=1);
7 7
 
8 8
 namespace HDNET\Autoloader\Utility;
9 9
 
Please login to merge, or discard this patch.
Classes/Utility/ArrayUtility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * Arrays utility.
5 5
  */
6
-declare(strict_types = 1);
6
+declare(strict_types=1);
7 7
 
8 8
 namespace HDNET\Autoloader\Utility;
9 9
 
Please login to merge, or discard this patch.
Classes/Utility/ReflectionUtility.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Reflection helper.
5 5
  */
6
-declare(strict_types = 1);
6
+declare(strict_types=1);
7 7
 
8 8
 namespace HDNET\Autoloader\Utility;
9 9
 
@@ -250,11 +250,11 @@  discard block
 block discarded – undo
250 250
     public static function getDeclaringProperties(string $className)
251 251
     {
252 252
         $classReflection = new \ReflectionClass($className);
253
-        $own = array_filter($classReflection->getProperties(), function ($property) use ($className) {
253
+        $own = array_filter($classReflection->getProperties(), function($property) use ($className) {
254 254
             return trim((string)$property->class, '\\') === trim($className, '\\');
255 255
         });
256 256
 
257
-        return array_map(function ($item) {
257
+        return array_map(function($item) {
258 258
             return (string)$item->name;
259 259
         }, $own);
260 260
     }
Please login to merge, or discard this patch.
Classes/Utility/ModelUtility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * Utility to interact with the Model.
5 5
  */
6
-declare(strict_types = 1);
6
+declare(strict_types=1);
7 7
 
8 8
 namespace HDNET\Autoloader\Utility;
9 9
 
Please login to merge, or discard this patch.
Classes/Utility/FileUtility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * FileUtility.
5 5
  */
6
-declare(strict_types = 1);
6
+declare(strict_types=1);
7 7
 
8 8
 namespace HDNET\Autoloader\Utility;
9 9
 
Please login to merge, or discard this patch.
Classes/Exception.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 /**
4 4
  * Exception.
5 5
  */
6
-declare(strict_types = 1);
6
+declare(strict_types=1);
7 7
 
8 8
 namespace HDNET\Autoloader;
9 9
 
Please login to merge, or discard this patch.
Classes/Cache/AutoloaderFileBackend.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\Cache;
6 6
 
Please login to merge, or discard this patch.