@@ -28,7 +28,7 @@ |
||
| 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 | } |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | return $this->getRule(); |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - dd((string)$first); |
|
| 29 | + dd((string) $first); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | private function getRule(): Symbol |
@@ -55,8 +55,8 @@ discard block |
||
| 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 | } catch (\Throwable $e) { |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | */ |
| 74 | 74 | private function getIncludePathname(): string |
| 75 | 75 | { |
| 76 | - $path = \dirname($this->file->getPathname()) . '/' . $this->getIncludeValue(); |
|
| 76 | + $path = \dirname($this->file->getPathname()).'/'.$this->getIncludeValue(); |
|
| 77 | 77 | |
| 78 | 78 | return \str_replace(['\\\\', '\\'], '/', $path); |
| 79 | 79 | } |