File tree 1 file changed +14
-7
lines changed
1 file changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -67,20 +67,27 @@ public function handleAsync(
67
67
*/
68
68
public function process (ContainerBuilder $ container )
69
69
{
70
- $ container
71
- ->getDefinition ('event_dispatcher ' )
72
- ->setClass (AsyncEventDispatcher::class);
70
+ if ($ container ->has ('event_dispatcher ' )) {
71
+ $ container
72
+ ->getDefinition ('event_dispatcher ' )
73
+ ->setClass (AsyncEventDispatcher::class);
74
+ }
73
75
74
- $ container
75
- ->getDefinition ('http_kernel ' )
76
- ->setClass (AsyncHttpKernel::class);
76
+ if ($ container ->has ('http_kernel ' )) {
77
+ $ container
78
+ ->getDefinition ('http_kernel ' )
79
+ ->setClass (AsyncHttpKernel::class);
80
+ }
77
81
78
82
if (!$ container ->has ('reactphp.event_loop ' )) {
79
83
$ loop = new Definition (LoopInterface::class);
80
84
$ loop ->setSynthetic (true );
85
+ $ loop ->setPublic (true );
81
86
$ container ->setDefinition ('reactphp.event_loop ' , $ loop );
82
87
}
83
88
84
- $ container ->setAlias (LoopInterface::class, 'reactphp.event_loop ' );
89
+ if ($ container ->has ('reactphp.event_loop ' )) {
90
+ $ container ->setAlias (LoopInterface::class, 'reactphp.event_loop ' );
91
+ }
85
92
}
86
93
}
You can’t perform that action at this time.
0 commit comments