Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / http-kernel / Tests / Fixtures / Controller / BasicTypesController.php
similarity index 59%
rename from vendor/symfony/class-loader/Tests/Fixtures/LegacyApc/Namespaced/Foo.php
rename to vendor/symfony/http-kernel/Tests/Fixtures/Controller/BasicTypesController.php
index 1b04072e5add5f40ffbbc5b7715f35707158103f..e8e0b603467aa19a8f16609dd344b175268d7447 100644 (file)
@@ -9,9 +9,11 @@
  * file that was distributed with this source code.
  */
 
-namespace LegacyApc\Namespaced;
+namespace Symfony\Component\HttpKernel\Tests\Fixtures\Controller;
 
-class Foo
+class BasicTypesController
 {
-    public static $loaded = true;
+    public function action(string $foo, int $bar, float $baz)
+    {
+    }
 }