From 633bc8426a92405d3fd165c036a4395e0610565c Mon Sep 17 00:00:00 2001 From: Joe Dixon Date: Tue, 14 Feb 2023 08:50:03 +0000 Subject: [PATCH 1/3] Update .gitattributes --- .gitattributes | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 From 54ee4f5c25eaffe60c768bd4227af1524c56b857 Mon Sep 17 00:00:00 2001 From: Joe Dixon Date: Tue, 14 Feb 2023 08:50:13 +0000 Subject: [PATCH 2/3] Add coding-standards.yml --- .github/workflows/coding-standards.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/workflows/coding-standards.yml 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 From 408112f411cf2aa1e2ab7b46c1e3c81af20136a7 Mon Sep 17 00:00:00 2001 From: joedixon Date: Tue, 14 Feb 2023 08:50:50 +0000 Subject: [PATCH 3/3] Fix code styling --- tests/Unit/Channels/PresenceChannelTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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',