Completed
Push — master ( db8578...85f9c3 )
by Kirill
10:30
created
src/Grammar/PP2/Resolvers/PragmasResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
             if ($resolver->match($name)) {
36 36
                 $resolved = $resolver->resolve($name);
37 37
 
38
-                if (! $resolved) {
38
+                if (!$resolved) {
39 39
                     throw $this->badPragma($name, $value)->throwsIn($readable, $rule->getOffset());
40 40
                 }
41 41
 
Please login to merge, or discard this patch.
src/Grammar/PP2/Resolvers/TokensResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     {
29 29
         $this->setToken($rule->getDefinitionName(), $rule->getDefinitionValue());
30 30
 
31
-        if (! $rule->isKept()) {
31
+        if (!$rule->isKept()) {
32 32
             $this->makeSkipped($rule->getDefinitionName());
33 33
         }
34 34
     }
Please login to merge, or discard this patch.
src/Grammar/PP2/Delegate/IncludeDelegate.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
 
56 56
         try {
57 57
             foreach (self::FILE_EXTENSIONS as $ext) {
58
-                if (\is_file($path . $ext)) {
59
-                    return File::fromPathname($path . $ext);
58
+                if (\is_file($path.$ext)) {
59
+                    return File::fromPathname($path.$ext);
60 60
                 }
61 61
             }
62 62
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     private function getIncludePathname(): string
76 76
     {
77
-        $path = \dirname($this->file->getPathname()) . '/' . $this->getIncludeValue();
77
+        $path = \dirname($this->file->getPathname()).'/'.$this->getIncludeValue();
78 78
 
79 79
         return \str_replace(['\\\\', '\\'], '/', $path);
80 80
     }
Please login to merge, or discard this patch.