File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
Yii2 Queue Extension Change Log
2
2
===============================
3
3
4
- 2.0.3 under development
5
- -----------------------
4
+ 2.1.0 May 24, 2018
5
+ ------------------
6
6
7
7
- Bug #210 : Worker option to define php bin path to run child process (zhuravljov)
8
8
- Enh: Worker loop event (zhuravljov)
@@ -133,3 +133,6 @@ Yii2 Queue Extension Change Log
133
133
134
134
135
135
136
+
137
+
138
+
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ abstract class Command extends Controller
55
55
*/
56
56
public $ phpBinary ;
57
57
58
+
58
59
/**
59
60
* @inheritdoc
60
61
*/
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ class Command extends CliCommand
23
23
*/
24
24
public $ queue ;
25
25
26
+
26
27
/**
27
28
* Runs all jobs from sqs.
28
29
* It can be used as cron job.
Original file line number Diff line number Diff line change @@ -26,31 +26,26 @@ class Queue extends CliQueue
26
26
* @var string
27
27
*/
28
28
public $ url ;
29
-
30
29
/**
31
30
* aws access key.
32
31
* @var string|null
33
32
*/
34
33
public $ key ;
35
-
36
34
/**
37
35
* aws secret.
38
36
* @var string|null
39
37
*/
40
38
public $ secret ;
41
-
42
39
/**
43
40
* region where queue is hosted.
44
41
* @var string
45
42
*/
46
43
public $ region = '' ;
47
-
48
44
/**
49
45
* API version.
50
46
* @var string
51
47
*/
52
48
public $ version = 'latest ' ;
53
-
54
49
/**
55
50
* @var string command class name
56
51
* @inheritdoc
@@ -67,6 +62,7 @@ class Queue extends CliQueue
67
62
*/
68
63
private $ _client ;
69
64
65
+
70
66
/**
71
67
* @inheritdoc
72
68
*/
You can’t perform that action at this time.
0 commit comments