Skip to content

Commit 636e2e6

Browse files
authored
StyleCI
1 parent 69eee9d commit 636e2e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/StartSwooleCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ protected function realpath(string $file): string
167167
{
168168
$realPath = realpath($file);
169169

170-
if (!$this->isSymlinked) {
170+
if (! $this->isSymlinked) {
171171
return $realPath;
172172
}
173173

@@ -180,7 +180,7 @@ protected function getPwd(): void
180180
if (str_starts_with($working_dir, './')) {
181181
$working_dir = substr($working_dir, 2);
182182

183-
$this->pwd = getcwd() . '/' . $working_dir;
183+
$this->pwd = getcwd().'/'.$working_dir;
184184
} elseif ($working_dir === '.') {
185185
// This part comes into action only if the server changes to
186186
// the base path directory before running the Artisan command.

0 commit comments

Comments
 (0)