2251435324b38817cd933bb13d18509fd14b2aec
[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 }