Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / containers / legacy-container18.php
diff --git a/vendor/symfony/dependency-injection/Tests/Fixtures/containers/legacy-container18.php b/vendor/symfony/dependency-injection/Tests/Fixtures/containers/legacy-container18.php
deleted file mode 100644 (file)
index 0248ed4..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-
-use Symfony\Component\DependencyInjection\ContainerBuilder;
-use Symfony\Component\DependencyInjection\Scope;
-
-$container = new ContainerBuilder();
-$container->addScope(new Scope('request'));
-$container->
-    register('foo', 'FooClass')->
-    setScope('request')
-;
-$container->compile();
-
-return $container;