From 2e36f9b916063f09b72fcc5ab3333e352e4b5d9d Mon Sep 17 00:00:00 2001 From: Christian Flach Date: Tue, 23 Dec 2014 19:56:24 +0100 Subject: [PATCH] Escape annotation as already done in the HttpKernel. to avoid problems with non-imported annotations. --- src/Symfony/Component/HttpKernel/KernelInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/KernelInterface.php b/src/Symfony/Component/HttpKernel/KernelInterface.php index 006a0fe31a1f..c7fd52ab8484 100644 --- a/src/Symfony/Component/HttpKernel/KernelInterface.php +++ b/src/Symfony/Component/HttpKernel/KernelInterface.php @@ -101,7 +101,7 @@ public function getBundle($name, $first = true); * * The resource name must follow the following pattern: * - * @BundleName/path/to/a/file.something + * @/path/to/a/file.something * * where BundleName is the name of the bundle * and the remaining part is the relative path in the bundle.