@@ -25,6 +25,7 @@ public function __construct()
25
25
'baz6 ' => 'getBaz6Service ' ,
26
26
'connection ' => 'getConnectionService ' ,
27
27
'connection2 ' => 'getConnection2Service ' ,
28
+ 'doctrine.entity_manager ' => 'getDoctrine_EntityManagerService ' ,
28
29
'foo ' => 'getFooService ' ,
29
30
'foo2 ' => 'getFoo2Service ' ,
30
31
'foo5 ' => 'getFoo5Service ' ,
@@ -37,6 +38,7 @@ public function __construct()
37
38
'manager2 ' => 'getManager2Service ' ,
38
39
'manager3 ' => 'getManager3Service ' ,
39
40
'monolog.logger ' => 'getMonolog_LoggerService ' ,
41
+ 'monolog_inline.logger ' => 'getMonologInline_LoggerService ' ,
40
42
'pA ' => 'getPAService ' ,
41
43
'root ' => 'getRootService ' ,
42
44
'subscriber ' => 'getSubscriberService ' ,
@@ -69,6 +71,9 @@ public function getRemovedIds(): array
69
71
'connection4 ' => true ,
70
72
'dispatcher ' => true ,
71
73
'dispatcher2 ' => true ,
74
+ 'doctrine.config ' => true ,
75
+ 'doctrine.entity_listener_resolver ' => true ,
76
+ 'doctrine.listener ' => true ,
72
77
'foo4 ' => true ,
73
78
'foobar ' => true ,
74
79
'foobar2 ' => true ,
@@ -82,8 +87,12 @@ public function getRemovedIds(): array
82
87
'mailer.transport ' => true ,
83
88
'mailer.transport_factory ' => true ,
84
89
'mailer.transport_factory.amazon ' => true ,
90
+ 'mailer_inline.mailer ' => true ,
91
+ 'mailer_inline.transport_factory ' => true ,
92
+ 'mailer_inline.transport_factory.amazon ' => true ,
85
93
'manager4 ' => true ,
86
94
'monolog.logger_2 ' => true ,
95
+ 'monolog_inline.logger_2 ' => true ,
87
96
'multiuse1 ' => true ,
88
97
'pB ' => true ,
89
98
'pC ' => true ,
@@ -182,6 +191,22 @@ protected function getConnection2Service()
182
191
return $ instance ;
183
192
}
184
193
194
+ /**
195
+ * Gets the public 'doctrine.entity_manager' shared service.
196
+ *
197
+ * @return \stdClass
198
+ */
199
+ protected function getDoctrine_EntityManagerService ()
200
+ {
201
+ $ a = new \stdClass ();
202
+ $ a ->resolver = new \stdClass (new RewindableGenerator (function () {
203
+ yield 0 => ($ this ->privates ['doctrine.listener ' ] ?? $ this ->getDoctrine_ListenerService ());
204
+ }, 1 ));
205
+ $ a ->flag = 'ok ' ;
206
+
207
+ return $ this ->services ['doctrine.entity_manager ' ] = \FactoryChecker::create ($ a );
208
+ }
209
+
185
210
/**
186
211
* Gets the public 'foo' shared service.
187
212
*
@@ -375,6 +400,20 @@ protected function getMonolog_LoggerService()
375
400
return $ instance ;
376
401
}
377
402
403
+ /**
404
+ * Gets the public 'monolog_inline.logger' shared service.
405
+ *
406
+ * @return \stdClass
407
+ */
408
+ protected function getMonologInline_LoggerService ()
409
+ {
410
+ $ this ->services ['monolog_inline.logger ' ] = $ instance = new \stdClass ();
411
+
412
+ $ instance ->handler = ($ this ->privates ['mailer_inline.mailer ' ] ?? $ this ->getMailerInline_MailerService ());
413
+
414
+ return $ instance ;
415
+ }
416
+
378
417
/**
379
418
* Gets the public 'pA' shared service.
380
419
*
@@ -445,6 +484,16 @@ protected function getBar6Service()
445
484
return $ this ->privates ['bar6 ' ] = new \stdClass ($ a );
446
485
}
447
486
487
+ /**
488
+ * Gets the private 'doctrine.listener' shared service.
489
+ *
490
+ * @return \stdClass
491
+ */
492
+ protected function getDoctrine_ListenerService ()
493
+ {
494
+ return $ this ->privates ['doctrine.listener ' ] = new \stdClass (($ this ->services ['doctrine.entity_manager ' ] ?? $ this ->getDoctrine_EntityManagerService ()));
495
+ }
496
+
448
497
/**
449
498
* Gets the private 'level5' shared service.
450
499
*
@@ -470,7 +519,8 @@ protected function getMailer_TransportService()
470
519
{
471
520
return $ this ->privates ['mailer.transport ' ] = (new \FactoryCircular (new RewindableGenerator (function () {
472
521
yield 0 => ($ this ->privates ['mailer.transport_factory.amazon ' ] ?? $ this ->getMailer_TransportFactory_AmazonService ());
473
- }, 1 )))->create ();
522
+ yield 1 => $ this ->getMailerInline_TransportFactory_AmazonService ();
523
+ }, 2 )))->create ();
474
524
}
475
525
476
526
/**
@@ -489,6 +539,31 @@ protected function getMailer_TransportFactory_AmazonService()
489
539
return $ instance ;
490
540
}
491
541
542
+ /**
543
+ * Gets the private 'mailer_inline.mailer' shared service.
544
+ *
545
+ * @return \stdClass
546
+ */
547
+ protected function getMailerInline_MailerService ()
548
+ {
549
+ return $ this ->privates ['mailer_inline.mailer ' ] = new \stdClass ((new \FactoryCircular (new RewindableGenerator (function () {
550
+ return new \EmptyIterator ();
551
+ }, 0 )))->create ());
552
+ }
553
+
554
+ /**
555
+ * Gets the private 'mailer_inline.transport_factory.amazon' shared service.
556
+ *
557
+ * @return \stdClass
558
+ */
559
+ protected function getMailerInline_TransportFactory_AmazonService ()
560
+ {
561
+ $ a = new \stdClass ();
562
+ $ a ->handler = ($ this ->privates ['mailer_inline.mailer ' ] ?? $ this ->getMailerInline_MailerService ());
563
+
564
+ return new \stdClass ($ a );
565
+ }
566
+
492
567
/**
493
568
* Gets the private 'manager4' shared service.
494
569
*
0 commit comments