Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / Prototype / Foo.php
diff --git a/vendor/symfony/dependency-injection/Tests/Fixtures/Prototype/Foo.php b/vendor/symfony/dependency-injection/Tests/Fixtures/Prototype/Foo.php
new file mode 100644 (file)
index 0000000..b6690a8
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+namespace Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype;
+
+class Foo implements FooInterface, Sub\BarInterface
+{
+    public function __construct($bar = null)
+    {
+    }
+
+    public function setFoo(self $foo)
+    {
+    }
+}