Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / TestServiceSubscriber.php
1 <?php
2
3 namespace Symfony\Component\DependencyInjection\Tests\Fixtures;
4
5 use Symfony\Component\DependencyInjection\ServiceSubscriberInterface;
6
7 class TestServiceSubscriber implements ServiceSubscriberInterface
8 {
9     public function __construct($container)
10     {
11     }
12
13     public static function getSubscribedServices()
14     {
15         return array(
16             __CLASS__,
17             '?'.CustomDefinition::class,
18             'bar' => CustomDefinition::class,
19             'baz' => '?'.CustomDefinition::class,
20         );
21     }
22 }