Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Yii2 Queue Extension Change Log

3.0.0 under development
---

- Enh #542: The minimum supported PHP version is 8.3 (@s1lver)
- Enh #503, #546: Added PHPStan for static code analysis. Error level set to 8 (@s1lver)
- Enh #503: Added strict typing (@s1lver)
Expand All @@ -14,6 +15,7 @@ Yii2 Queue Extension Change Log
- Enh #503: All dependent packages for supported drivers have been updated to the latest versions (@s1lver)
- Enh #503: The `opis/closure` package did not support PHP 8.1 and was replaced by the `laravel/serializable-closure` package (@s1lver)
- Enh #544: Applying Yii2 coding standards (@s1lver)
- Bug #563: Fix `@property` annotations in `InfoAction` and `Queue` drivers (mspirkov)

2.3.8 January 08, 2026
----------------------
Expand Down
6 changes: 6 additions & 0 deletions phpstan-baseline.neon
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ parameters:
count: 1
path: src/cli/Command.php

-
message: '#^Call to an undefined method yii\\base\\Controller\:\:stdout\(\)\.$#'
identifier: method.notFound
count: 9
path: src/cli/InfoAction.php

-
message: '#^Cannot call method getComponents\(\) on yii\\console\\Application\|yii\\web\\Application\<yii\\web\\IdentityInterface\>\|null\.$#'
identifier: method.nonObject
Expand Down
2 changes: 0 additions & 2 deletions src/cli/InfoAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
* Info about queue status.
*
* @author Kalmer Kaurson <kalmerkaurson@gmail.com>
*
* @property Controller $controller
*/
class InfoAction extends Action
{
Expand Down
1 change: 0 additions & 1 deletion src/drivers/amqp_interop/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
* Amqp Queue.
*
* @property-read AmqpContext $context
* @property-read AmqpQueue $queue
*
* @author Maksym Kotliar <kotlyar.maksim@gmail.com>
* @since 2.0.2
Expand Down
3 changes: 1 addition & 2 deletions src/drivers/beanstalk/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
/**
* Beanstalk Queue.
*
* @property-read TubeName $tubeName
* @property-read object $statsTube Tube statistics.
* @property-read TubeStats $statsTube Tube statistics.
*
* @author Roman Zhuravlev <zhuravljov@gmail.com>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/db/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* Db Queue.
*
* @property-read StatisticsProvider $statisticsProvider
* @property-read StatisticsInterface $statisticsProvider
*
* @author Roman Zhuravlev <zhuravljov@gmail.com>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/file/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* File Queue.
*
* @property-read StatisticsProvider $statisticsProvider
* @property-read StatisticsInterface $statisticsProvider
*
* @author Roman Zhuravlev <zhuravljov@gmail.com>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/redis/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Redis Queue.
*
* @property-read StatisticsProvider $statisticsProvider
* @property-read StatisticsInterface $statisticsProvider
*
* @author Roman Zhuravlev <zhuravljov@gmail.com>
*/
Expand Down
Loading