Skip to content

Commit b49461d

Browse files
authored
fix: remove trailing_comma_in_multiline because it's not work with PHP 7.4 (#28)
* fix: remove trailing_comma_in_multiline because it's not work with PHP 7.4 * execute CI on PR
1 parent a8a4473 commit b49461d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Continuous Integration
2-
on: [push]
2+
on: [push, pull_request]
33

44
jobs:
55
linter:

src/BedrockStreaming.php

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ public function getRules(): array
4242
'phpdoc_summary' => false,
4343
'single_line_throw' => false,
4444
'yoda_style' => false,
45-
'trailing_comma_in_multiline' => ['elements' => ['arguments', 'arrays', 'match', 'parameters']],
4645
];
4746

4847
return $rules;

0 commit comments

Comments
 (0)