Skip to content

Commit 2f66ceb

Browse files
committed
add comment
1 parent c35c5f3 commit 2f66ceb

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,20 @@ A changelog of all notable changes made to this library.
1111
----------------------
1212

1313

14-
1.0.0-Beta under development
14+
1.0.0-RC under development
1515
----------------------
1616

1717

18-
1.0.0-2-Alpha 13.02.2021
18+
1.0.0-Beta under development
1919
----------------------
20+
21+
22+
1.0.0-Alpha-3 ??.??.2021
23+
------------------------
24+
25+
26+
1.0.0-Alpha-2 17.03.2021
27+
------------------------
2028
- *ENH*: added work with jobs
2129
- *ENH*: added work with processors
2230
- *ENH*: added serializer fo message body

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
> This package is under development. Api classes of the app can be changed.
1+
> This package is under development. Api classes of this application can be changed.
22
33
<p align="center">
44
<h1 align="center">PHP Simple Queue</h1>

docs/guide/example.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Example of processing messages from a queue: [consume.php](../../example/consume
2323

2424
Advanced example of processing messages from a queue: [advanced-consume.php](../../example/advanced-consume.php)
2525

26+
<br>
2627

2728
## Quick run with docker
2829

src/Serializer/SymfonySerializer.php

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,7 @@ class SymfonySerializer implements SerializerInterface
2121
*/
2222
public function __construct()
2323
{
24-
$this->serializer = new Serializer(
25-
[
26-
27-
],
28-
[
29-
new JsonEncoder(),
30-
]
31-
);
24+
$this->serializer = new Serializer([], [new JsonEncoder()]);
3225
}
3326

3427
/**

0 commit comments

Comments
 (0)