Passed
Push — master ( 7ab80b...4af844 )
by Arkadiusz
03:30
created
src/Phpml/Exception/InvalidArgumentException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Phpml\Exception;
6 6
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public static function invalidTarget($target)
73 73
     {
74
-        return new self('Target with value ' . $target . ' is not part of the accepted classes');
74
+        return new self('Target with value '.$target.' is not part of the accepted classes');
75 75
     }
76 76
 
77 77
     /**
Please login to merge, or discard this patch.
src/Phpml/Classification/MLPClassifier.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 Phpml\Classification;
6 6
 
Please login to merge, or discard this patch.