Skip to content

Commit cb6f53e

Browse files
author
DKravtsov
committedMar 17, 2024
Updated composer dependencies, RabbitMQ version, refactoring.
1 parent 15b37a8 commit cb6f53e

26 files changed

+964
-941
lines changed
 

‎composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"doctrine/annotations": "^2.0",
3434
"doctrine/doctrine-bundle": "^2.11",
3535
"doctrine/doctrine-migrations-bundle": "^3.3",
36-
"doctrine/orm": "^2.18",
36+
"doctrine/orm": "^2.19",
3737
"phpdocumentor/reflection-docblock": "^5.3",
3838
"dukecity/command-scheduler-bundle": "^5.0",
3939
"symfony/apache-pack": "^1.0",
@@ -82,7 +82,7 @@
8282
"roave/security-advisories": "dev-latest",
8383
"symfony/browser-kit": "6.4.*",
8484
"symfony/debug-bundle": "6.4.*",
85-
"symfony/maker-bundle": "^1.54",
85+
"symfony/maker-bundle": "^1.56",
8686
"symfony/requirements-checker": "^2.0",
8787
"symfony/stopwatch": "6.4.*",
8888
"symfony/var-dumper": "6.4.*",

‎composer.lock

+321-318
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎docker/rabbitmq/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rabbitmq:3.12-management-alpine
1+
FROM rabbitmq:3.13-management-alpine
22

3-
COPY rabbitmq_delayed_message_exchange-3.12.0.ez /opt/rabbitmq/plugins/
3+
COPY rabbitmq_delayed_message_exchange-3.13.0.ez /opt/rabbitmq/plugins/
44
RUN rabbitmq-plugins enable --offline rabbitmq_delayed_message_exchange
Binary file not shown.
Binary file not shown.

‎src/Command/WaitDatabaseCommand.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
use Throwable;
1414

1515
/**
16-
* Class WaitDatabaseCommand
17-
*
1816
* @package App\Command\Utils
1917
*/
2018
#[AsCommand(
@@ -26,7 +24,7 @@ class WaitDatabaseCommand extends Command
2624
/**
2725
* Wait sleep time for db connection in seconds
2826
*/
29-
private const WAIT_SLEEP_TIME = 2;
27+
private const int WAIT_SLEEP_TIME = 2;
3028

3129
/**
3230
* Constructor

‎src/Kernel.php

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
99

1010
/**
11-
* Class Kernel
12-
*
1311
* @package App
1412
*/
1513
class Kernel extends BaseKernel

‎src/Message/Interfaces/MessageHighInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
namespace App\Message\Interfaces;
66

77
/**
8-
* Interface MessageHighInterface
9-
*
108
* @package App\Message\Interfaces
119
*/
1210
interface MessageHighInterface

‎src/Message/Interfaces/MessageLowInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
namespace App\Message\Interfaces;
66

77
/**
8-
* Interface MessageLowInterface
9-
*
108
* @package App\Message\Interfaces
119
*/
1210
interface MessageLowInterface

‎src/Message/TestMessage.php

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
use App\Message\Interfaces\MessageHighInterface;
88

99
/**
10-
* Class TestMessage
1110
* TODO: This is message example, you can delete it.
1211
*
1312
* @package App\Message

‎src/MessageHandler/TestHandler.php

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
use Throwable;
1111

1212
/**
13-
* Class TestHandler
1413
* If you need handling multiple - follow https://symfony.com/doc/current/messenger.html#handling-multiple-messages
1514
* TODO: This is handler example, you can delete it.
1615
*

‎src/Service/Interfaces/MessageServiceInterface.php

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
namespace App\Service\Interfaces;
66

77
/**
8-
* Interface MessageServiceInterface
9-
*
108
* @package App\Service\Interfaces
119
*/
1210
interface MessageServiceInterface

‎src/Service/MessageService.php

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
use Symfony\Component\Messenger\MessageBusInterface;
1111

1212
/**
13-
* Class MessageService
14-
*
1513
* @package App\Service
1614
*/
1715
class MessageService implements MessageServiceInterface

‎tests/Functional/ExampleTest.php

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
use App\Tests\FunctionalTestCase;
88

99
/**
10-
* Class ExampleTest
11-
*
1210
* @package App\Tests\Functional
1311
*/
1412
class ExampleTest extends FunctionalTestCase

‎tests/Unit/ExampleTest.php

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
use App\Tests\UnitTestCase;
88

99
/**
10-
* Class ExampleTest
11-
*
1210
* @package App\Tests\Unit
1311
*/
1412
class ExampleTest extends UnitTestCase

0 commit comments

Comments
 (0)
Failed to load comments.