Completed
Push — master ( 5dec7d...f6f8bd )
by Kirill
09:42 queued 07:30
created
src/Reader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
         $path = \trim($token->value(1), " \t\n\r\0\x0B\"'");
106 106
 
107 107
         foreach (self::FILE_EXTENSIONS as $extension) {
108
-            $file = \dirname($from->getPathname()) . '/' . $path . $extension;
108
+            $file = \dirname($from->getPathname()).'/'.$path.$extension;
109 109
 
110 110
             if (\is_file($file)) {
111 111
                 return File::fromPathname($file);
Please login to merge, or discard this patch.
src/Reader/Resolver/PragmaResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     public function resolve(Readable $readable, TokenInterface $token): void
39 39
     {
40
-        if (! \in_array($token->value(1), self::ALLOWED_PRAGMAS, true)) {
40
+        if (!\in_array($token->value(1), self::ALLOWED_PRAGMAS, true)) {
41 41
             $error = \vsprintf('Unknown configuration pragma rule "%s" with value "%s"', [
42 42
                 $token->value(1),
43 43
                 $token->value(2),
Please login to merge, or discard this patch.