Skip to content

Commit

Permalink
coding style updates
Browse files Browse the repository at this point in the history
Signed-off-by: Demin Yin <deminy@deminy.net>
  • Loading branch information
deminy committed Dec 7, 2023
1 parent f90b20f commit 1f7483c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding_style_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion examples/servers/server-events.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1f7483c

Please sign in to comment.