Completed
Push — master ( b079ab...52935c )
by Marco
02:44
created
src/Checker.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 
7 7
 use Marcosh\PhpTypeChecker\TypeHint\InputTypeHint;
8 8
 use Marcosh\PhpTypeChecker\TypeHint\ReturnTypeHint;
9
-use Roave\BetterReflection\Reflection\ReflectionMethod;
10 9
 use Roave\BetterReflection\Reflector\ClassReflector;
11 10
 use Roave\BetterReflection\Reflector\FunctionReflector;
12 11
 use Roave\BetterReflection\SourceLocator\Type\DirectoriesSourceLocator;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
         $classReflector = new ClassReflector($directoriesSourceLocator);
25 25
 
26
-        foreach($classReflector->getAllClasses() as $class) {
26
+        foreach ($classReflector->getAllClasses() as $class) {
27 27
             $methods = $class->getImmediateMethods();
28 28
 
29 29
             foreach ($methods as $method) {
Please login to merge, or discard this patch.
src/Anomaly/FunctionParamTypeDoesNotCoincideWithDocBlock.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 Marcosh\PhpTypeChecker\Anomaly;
6 6
 
Please login to merge, or discard this patch.
src/Check/Parameter.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 Marcosh\PhpTypeChecker\Check;
6 6
 
Please login to merge, or discard this patch.
src/Anomaly/MethodParamTypeDoesNotCoincideWithDocBlock.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 Marcosh\PhpTypeChecker\Anomaly;
6 6
 
Please login to merge, or discard this patch.
src/Anomaly/MissingMethodParamTypeWithDocBlock.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 Marcosh\PhpTypeChecker\Anomaly;
6 6
 
Please login to merge, or discard this patch.
src/Anomaly/MissingFunctionParamTypeWithDocBlock.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 Marcosh\PhpTypeChecker\Anomaly;
6 6
 
Please login to merge, or discard this patch.
src/Check/FunctionAbstract.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 Marcosh\PhpTypeChecker\Check;
6 6
 
Please login to merge, or discard this patch.