Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / containers / CustomContainer.php
1 <?php
2
3 namespace Symfony\Component\DependencyInjection\Tests\Fixtures\containers;
4
5 use Symfony\Component\DependencyInjection\Container;
6 use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
7
8 class CustomContainer extends Container
9 {
10     public function getBarService()
11     {
12     }
13
14     public function getFoobarService()
15     {
16     }
17 }