Skip to content

Commit d04b4b3

Browse files
committed
release version 2.1.0
1 parent f7453e6 commit d04b4b3

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Yii2 Queue Extension Change Log
22
===============================
33

4-
2.0.3 under development
5-
-----------------------
4+
2.1.0 May 24, 2018
5+
------------------
66

77
- Bug #210: Worker option to define php bin path to run child process (zhuravljov)
88
- Enh: Worker loop event (zhuravljov)
@@ -133,3 +133,6 @@ Yii2 Queue Extension Change Log
133133

134134

135135

136+
137+
138+

src/cli/Command.php

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ abstract class Command extends Controller
5555
*/
5656
public $phpBinary;
5757

58+
5859
/**
5960
* @inheritdoc
6061
*/

src/drivers/sqs/Command.php

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class Command extends CliCommand
2323
*/
2424
public $queue;
2525

26+
2627
/**
2728
* Runs all jobs from sqs.
2829
* It can be used as cron job.

src/drivers/sqs/Queue.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -26,31 +26,26 @@ class Queue extends CliQueue
2626
* @var string
2727
*/
2828
public $url;
29-
3029
/**
3130
* aws access key.
3231
* @var string|null
3332
*/
3433
public $key;
35-
3634
/**
3735
* aws secret.
3836
* @var string|null
3937
*/
4038
public $secret;
41-
4239
/**
4340
* region where queue is hosted.
4441
* @var string
4542
*/
4643
public $region = '';
47-
4844
/**
4945
* API version.
5046
* @var string
5147
*/
5248
public $version = 'latest';
53-
5449
/**
5550
* @var string command class name
5651
* @inheritdoc
@@ -67,6 +62,7 @@ class Queue extends CliQueue
6762
*/
6863
private $_client;
6964

65+
7066
/**
7167
* @inheritdoc
7268
*/

0 commit comments

Comments
 (0)