26 files changed +964
-941
lines changed Original file line number Diff line number Diff line change 33
33
"doctrine/annotations" : " ^2.0" ,
34
34
"doctrine/doctrine-bundle" : " ^2.11" ,
35
35
"doctrine/doctrine-migrations-bundle" : " ^3.3" ,
36
- "doctrine/orm" : " ^2.18 " ,
36
+ "doctrine/orm" : " ^2.19 " ,
37
37
"phpdocumentor/reflection-docblock" : " ^5.3" ,
38
38
"dukecity/command-scheduler-bundle" : " ^5.0" ,
39
39
"symfony/apache-pack" : " ^1.0" ,
82
82
"roave/security-advisories" : " dev-latest" ,
83
83
"symfony/browser-kit" : " 6.4.*" ,
84
84
"symfony/debug-bundle" : " 6.4.*" ,
85
- "symfony/maker-bundle" : " ^1.54 " ,
85
+ "symfony/maker-bundle" : " ^1.56 " ,
86
86
"symfony/requirements-checker" : " ^2.0" ,
87
87
"symfony/stopwatch" : " 6.4.*" ,
88
88
"symfony/var-dumper" : " 6.4.*" ,
Original file line number Diff line number Diff line change 1
- FROM rabbitmq:3.12 -management-alpine
1
+ FROM rabbitmq:3.13 -management-alpine
2
2
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/
4
4
RUN rabbitmq-plugins enable --offline rabbitmq_delayed_message_exchange
Original file line number Diff line number Diff line change 13
13
use Throwable ;
14
14
15
15
/**
16
- * Class WaitDatabaseCommand
17
- *
18
16
* @package App\Command\Utils
19
17
*/
20
18
#[AsCommand(
@@ -26,7 +24,7 @@ class WaitDatabaseCommand extends Command
26
24
/**
27
25
* Wait sleep time for db connection in seconds
28
26
*/
29
- private const WAIT_SLEEP_TIME = 2 ;
27
+ private const int WAIT_SLEEP_TIME = 2 ;
30
28
31
29
/**
32
30
* Constructor
Original file line number Diff line number Diff line change 8
8
use Symfony \Component \HttpKernel \Kernel as BaseKernel ;
9
9
10
10
/**
11
- * Class Kernel
12
- *
13
11
* @package App
14
12
*/
15
13
class Kernel extends BaseKernel
Original file line number Diff line number Diff line change 5
5
namespace App \Message \Interfaces ;
6
6
7
7
/**
8
- * Interface MessageHighInterface
9
- *
10
8
* @package App\Message\Interfaces
11
9
*/
12
10
interface MessageHighInterface
Original file line number Diff line number Diff line change 5
5
namespace App \Message \Interfaces ;
6
6
7
7
/**
8
- * Interface MessageLowInterface
9
- *
10
8
* @package App\Message\Interfaces
11
9
*/
12
10
interface MessageLowInterface
Original file line number Diff line number Diff line change 7
7
use App \Message \Interfaces \MessageHighInterface ;
8
8
9
9
/**
10
- * Class TestMessage
11
10
* TODO: This is message example, you can delete it.
12
11
*
13
12
* @package App\Message
Original file line number Diff line number Diff line change 10
10
use Throwable ;
11
11
12
12
/**
13
- * Class TestHandler
14
13
* If you need handling multiple - follow https://symfony.com/doc/current/messenger.html#handling-multiple-messages
15
14
* TODO: This is handler example, you can delete it.
16
15
*
Original file line number Diff line number Diff line change 5
5
namespace App \Service \Interfaces ;
6
6
7
7
/**
8
- * Interface MessageServiceInterface
9
- *
10
8
* @package App\Service\Interfaces
11
9
*/
12
10
interface MessageServiceInterface
Original file line number Diff line number Diff line change 10
10
use Symfony \Component \Messenger \MessageBusInterface ;
11
11
12
12
/**
13
- * Class MessageService
14
- *
15
13
* @package App\Service
16
14
*/
17
15
class MessageService implements MessageServiceInterface
Original file line number Diff line number Diff line change 7
7
use App \Tests \FunctionalTestCase ;
8
8
9
9
/**
10
- * Class ExampleTest
11
- *
12
10
* @package App\Tests\Functional
13
11
*/
14
12
class ExampleTest extends FunctionalTestCase
Original file line number Diff line number Diff line change 7
7
use App \Tests \UnitTestCase ;
8
8
9
9
/**
10
- * Class ExampleTest
11
- *
12
10
* @package App\Tests\Unit
13
11
*/
14
12
class ExampleTest extends UnitTestCase
0 commit comments