We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69eee9d commit 636e2e6Copy full SHA for 636e2e6
src/Commands/StartSwooleCommand.php
@@ -167,7 +167,7 @@ protected function realpath(string $file): string
167
{
168
$realPath = realpath($file);
169
170
- if (!$this->isSymlinked) {
+ if (! $this->isSymlinked) {
171
return $realPath;
172
}
173
@@ -180,7 +180,7 @@ protected function getPwd(): void
180
if (str_starts_with($working_dir, './')) {
181
$working_dir = substr($working_dir, 2);
182
183
- $this->pwd = getcwd() . '/' . $working_dir;
+ $this->pwd = getcwd().'/'.$working_dir;
184
} elseif ($working_dir === '.') {
185
// This part comes into action only if the server changes to
186
// the base path directory before running the Artisan command.
0 commit comments