diff --git a/.github/workflows/coding_style_checks.yml b/.github/workflows/coding_style_checks.yml index 4011b36..6c7f6fc 100644 --- a/.github/workflows/coding_style_checks.yml +++ b/.github/workflows/coding_style_checks.yml @@ -11,4 +11,4 @@ jobs: uses: actions/checkout@v4 - name: Run Coding Style Checks - run: docker run --rm -v "$(pwd):/project" -w /project -i jakzal/phpqa:php8.2 php-cs-fixer fix --dry-run + run: docker run -q --rm -v "$(pwd):/project" -w /project -i jakzal/phpqa:php8.2 php-cs-fixer fix --dry-run diff --git a/examples/servers/server-events.php b/examples/servers/server-events.php index 251856b..9737ca8 100755 --- a/examples/servers/server-events.php +++ b/examples/servers/server-events.php @@ -44,7 +44,7 @@ function printMessage(string $message, bool $newLine = false) { - echo($newLine ? PHP_EOL : ''), 'INFO (', date('H:i:s'), "): {$message}", PHP_EOL; + echo ($newLine ? PHP_EOL : ''), 'INFO (', date('H:i:s'), "): {$message}", PHP_EOL; } $server = new Server('0.0.0.0', 9509);