diff --git a/.gitattributes b/.gitattributes index a212694b..00499355 100644 --- a/.gitattributes +++ b/.gitattributes @@ -12,7 +12,6 @@ .editorconfig export-ignore .gitattributes export-ignore .gitignore export-ignore -.styleci.yml export-ignore CHANGELOG.md export-ignore phpunit.xml.dist export-ignore -UPGRADE.md export-ignore +UPGRADE.md export-ignore \ No newline at end of file diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml new file mode 100644 index 00000000..5f1a35d0 --- /dev/null +++ b/.github/workflows/coding-standards.yml @@ -0,0 +1,7 @@ +name: fix code styling + +on: [push] + +jobs: + lint: + uses: laravel/.github/.github/workflows/coding-standards.yml@main \ No newline at end of file diff --git a/tests/Unit/Channels/PresenceChannelTest.php b/tests/Unit/Channels/PresenceChannelTest.php index 6157d071..f437137c 100644 --- a/tests/Unit/Channels/PresenceChannelTest.php +++ b/tests/Unit/Channels/PresenceChannelTest.php @@ -63,7 +63,7 @@ it('can return data stored on the connection', function () { $channel = new PresenceChannel('presence-test-channel'); - $connections = connections(2, ) + $connections = connections(2) ->map(fn ($connection, $index) => [ 'user_info' => [ 'name' => 'Joe',