Completed
Push — master ( 6749c2...e05472 )
by Luc
04:46
created
src/Reflection/Parts/AbstractTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @type bool
9 9
      */
10
-    protected $isAbstract  = false;
10
+    protected $isAbstract = false;
11 11
 
12 12
     /**
13 13
      * Checks if a class is abstract.
Please login to merge, or discard this patch.
src/Reflection/Parts/PropertyTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -210,7 +210,7 @@
 block discarded – undo
210 210
             return $properties;
211 211
         }
212 212
 
213
-        return array_filter($properties, function (ReflectionProperty $property) use ($filter) {
213
+        return array_filter($properties, function(ReflectionProperty $property) use ($filter) {
214 214
             if (self::IS_PRIVATE === (self::IS_PRIVATE & $filter) && $property->isPrivate()) {
215 215
                 return true;
216 216
             } elseif (self::IS_PROTECTED === (self::IS_PROTECTED & $filter) && $property->isProtected()) {
Please login to merge, or discard this patch.
src/Reflection/ReflectionClassLike.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@
 block discarded – undo
252 252
             return $methods;
253 253
         }
254 254
 
255
-        return array_filter($methods, function (ReflectionMethod $method) use ($filter) {
255
+        return array_filter($methods, function(ReflectionMethod $method) use ($filter) {
256 256
             if (self::IS_PRIVATE === (self::IS_PRIVATE & $filter) && $method->isPrivate()) {
257 257
                 return true;
258 258
             } elseif (self::IS_PROTECTED === (self::IS_PROTECTED & $filter) && $method->isProtected()) {
Please login to merge, or discard this patch.
src/ReflectionsIndex.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -27,35 +27,35 @@  discard block
 block discarded – undo
27 27
 
28 28
     public function getClassLikes()
29 29
     {
30
-        return array_filter($this->reflections, function ($reflection) {
30
+        return array_filter($this->reflections, function($reflection) {
31 31
             return $reflection instanceof ReflectionClassLike;
32 32
         });
33 33
     }
34 34
 
35 35
     public function getClasses()
36 36
     {
37
-        return array_filter($this->reflections, function ($reflection) {
37
+        return array_filter($this->reflections, function($reflection) {
38 38
             return $reflection instanceof ReflectionClass;
39 39
         });
40 40
     }
41 41
 
42 42
     public function getInterfaces()
43 43
     {
44
-        return array_filter($this->reflections, function ($reflection) {
44
+        return array_filter($this->reflections, function($reflection) {
45 45
             return $reflection instanceof ReflectionInterface;
46 46
         });
47 47
     }
48 48
 
49 49
     public function getTraits()
50 50
     {
51
-        return array_filter($this->reflections, function ($reflection) {
51
+        return array_filter($this->reflections, function($reflection) {
52 52
             return $reflection instanceof ReflectionTrait;
53 53
         });
54 54
     }
55 55
 
56 56
     public function getFunctionLikes()
57 57
     {
58
-        $functions = array_filter($this->reflections, function ($reflection) {
58
+        $functions = array_filter($this->reflections, function($reflection) {
59 59
             return $reflection instanceof ReflectionFunction;
60 60
         });
61 61
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     public function getFunctions()
70 70
     {
71
-        return array_filter($this->reflections, function ($reflection) {
71
+        return array_filter($this->reflections, function($reflection) {
72 72
             return $reflection instanceof ReflectionFunction;
73 73
         });
74 74
     }
Please login to merge, or discard this patch.