Completed
Pull Request — master (#10)
by Paweł
05:31
created
src/Scalp/None.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 Scalp;
6 6
 
Please login to merge, or discard this patch.
src/Scalp/Some.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 Scalp;
6 6
 
Please login to merge, or discard this patch.
src/Scalp/Option.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 Scalp;
6 6
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         return $this->isEmpty() || $p($this->get());
75 75
     }
76 76
 
77
-    final public function foreach(callable $f): void
77
+    final public function foreach (callable $f): void
78 78
     {
79 79
         $this->isEmpty() ?: $f($this->get());
80 80
     }
Please login to merge, or discard this patch.