Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / Prototype / Foo.php
1 <?php
2
3 namespace Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype;
4
5 class Foo implements FooInterface, Sub\BarInterface
6 {
7     public function __construct($bar = null)
8     {
9     }
10
11     public function setFoo(self $foo)
12     {
13     }
14 }