Passed
Pull Request — master (#13)
by Paweł
02:17
created
src/Scalp/PartialApplication.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
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     {
27 27
         $argsIterator = new \ArrayIterator($arguments);
28 28
 
29
-        $replacePlaceholders = function ($arg) use ($argsIterator) {
29
+        $replacePlaceholders = function($arg) use ($argsIterator) {
30 30
             $replacement = $arg === __ ? $argsIterator->current() : $arg;
31 31
 
32 32
             $argsIterator->next();
Please login to merge, or discard this patch.