Skip to content

Commit

Permalink
release version 2.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
arogachev committed Apr 29, 2024
1 parent 8481457 commit dbc9d4a
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 11 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Yii2 Queue Extension Change Log
===============================

2.3.7 under development
-----------------------
- Enh #509: Add StatisticsProviderInterface to get statistics from queue (kalmer)
2.3.7 April 29, 2024
--------------------

- no changes in this release.
- Enh #509: Add StatisticsProviderInterface to get statistics from queue (kalmer)


2.3.6 October 03, 2023
Expand Down
2 changes: 2 additions & 0 deletions src/drivers/db/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
/**
* Db Queue.
*
* @property-read StatisticsProvider $statisticsProvider
*
* @author Roman Zhuravlev <[email protected]>
*/
class Queue extends CliQueue implements StatisticsProviderInterface
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/db/StatisticsProvider.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
Expand Down Expand Up @@ -27,6 +26,7 @@ class StatisticsProvider extends BaseObject implements DoneCountInterface, Waiti
*/
protected $queue;


public function __construct(Queue $queue, $config = [])
{
$this->queue = $queue;
Expand Down
2 changes: 2 additions & 0 deletions src/drivers/file/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
/**
* File Queue.
*
* @property-read StatisticsProvider $statisticsProvider
*
* @author Roman Zhuravlev <[email protected]>
*/
class Queue extends CliQueue implements StatisticsProviderInterface
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/file/StatisticsProvider.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
Expand All @@ -26,6 +25,7 @@ class StatisticsProvider extends BaseObject implements DoneCountInterface, Waiti
*/
protected $queue;


public function __construct(Queue $queue, $config = [])
{
$this->queue = $queue;
Expand Down
2 changes: 2 additions & 0 deletions src/drivers/redis/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
/**
* Redis Queue.
*
* @property-read StatisticsProvider $statisticsProvider
*
* @author Roman Zhuravlev <[email protected]>
*/
class Queue extends CliQueue implements StatisticsProviderInterface
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/redis/StatisticsProvider.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
Expand All @@ -26,6 +25,7 @@ class StatisticsProvider extends BaseObject implements DoneCountInterface, Waiti
*/
protected $queue;


public function __construct(Queue $queue, $config = [])
{
$this->queue = $queue;
Expand Down
1 change: 0 additions & 1 deletion src/interfaces/DelayedCountInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
Expand Down
1 change: 0 additions & 1 deletion src/interfaces/DoneCountInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
Expand Down
1 change: 0 additions & 1 deletion src/interfaces/ReservedCountInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
Expand Down
1 change: 0 additions & 1 deletion src/interfaces/StatisticsProviderInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
Expand Down
1 change: 0 additions & 1 deletion src/interfaces/WaitingCountInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
Expand Down

0 comments on commit dbc9d4a

Please sign in to comment.