Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Nov 28, 2023
1 parent e2c9505 commit a0108f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/framework/src/Console/Commands/ServeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ protected function openInBrowser(): void
$process = Process::command(sprintf('%s http://%s:%d', $command, $this->getHostSelection(), $this->getPortSelection()))->run();

Check warning on line 154 in packages/framework/src/Console/Commands/ServeCommand.php

View check run for this annotation

Codecov / codecov/patch

packages/framework/src/Console/Commands/ServeCommand.php#L154

Added line #L154 was not covered by tests

if ($process->failed()) {
$this->warn("Unable to open the site preview in the browser on your system:");
$this->warn('Unable to open the site preview in the browser on your system:');
$this->line(sprintf(' %s', str_replace("\n", "\n ", $process->errorOutput())));

Check warning on line 158 in packages/framework/src/Console/Commands/ServeCommand.php

View check run for this annotation

Codecov / codecov/patch

packages/framework/src/Console/Commands/ServeCommand.php#L156-L158

Added lines #L156 - L158 were not covered by tests
}

Expand Down

0 comments on commit a0108f4

Please sign in to comment.