We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | $sourceFile = $this->packageDir.$file.'.blade.php'; |
81 | 81 | $copiedFile = $this->appDir.$file.'.blade.php'; |
82 | 82 | |
83 | - if (! file_exists($sourceFile)) { |
|
83 | + if (!file_exists($sourceFile)) { |
|
84 | 84 | return $this->error( |
85 | 85 | 'Cannot find source '.$label.' at ' |
86 | 86 | .$sourceFile. |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | if ($canCopy) { |
101 | 101 | $path = pathinfo($copiedFile); |
102 | 102 | |
103 | - if (! file_exists($path['dirname'])) { |
|
103 | + if (!file_exists($path['dirname'])) { |
|
104 | 104 | mkdir($path['dirname'], 0755, true); |
105 | 105 | } |
106 | 106 |