Skip to content

Commit 0d1f038

Browse files
authored
chore(deps): update huangdijia/php-coding-standard to ^2.4 (#911)
* chore(deps): update huangdijia/php-coding-standard to ^2.4 Updates the PHP coding standard package from ^2.0 to ^2.4 to get the latest improvements and fixes. * style: apply PHP coding standard fixes after updating to ^2.4 Reorders union types to follow null-first convention and applies other code style improvements as required by the updated huangdijia/php-coding-standard package. This commit includes automatic fixes across multiple components: - Union type reordering (Type|null → null|Type) - Consistent formatting and style improvements - No functional changes, only code style compliance --------- Co-authored-by: Deeka Wong <8337659+huangdijia@users.noreply.github.com>
1 parent a4d0e00 commit 0d1f038

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Subscriber/TriggerSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ protected function loop(): void
151151
try {
152152
while (true) {
153153
while (true) {
154-
/** @var array{0:class-string,1:string,2:array}|false|null $payload */
154+
/** @var null|array{0:class-string,1:string,2:array}|false $payload */
155155
$payload = $this->chan?->pop();
156156

157157
if (! is_array($payload)) {

0 commit comments

Comments
 (0)