Skip to content

Commit 8d33be5

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 603df28 commit 8d33be5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/AsyncQueue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/**
1919
* @mixin DriverFactory
20-
* @property string|null $queue
20+
* @property null|string $queue
2121
*/
2222
class AsyncQueue extends Facade
2323
{

src/Kafka.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/**
1919
* @mixin ProducerManager
20-
* @property string|null $queue
20+
* @property null|string $queue
2121
*/
2222
class Kafka extends Facade
2323
{

0 commit comments

Comments
 (0)