From https://github.com/opensky/Symfony2-coding-standard/issues/34 There's a note that libraries like Pimple won't conform to this. This comes up with AppCache.php and AppKernel.php too. Isn't the solution to wrap the class in a bracketed namespace? e.g., ``` namespace { class Pimple { ... } } ```
From https://github.com/opensky/Symfony2-coding-standard/issues/34
There's a note that libraries like Pimple won't conform to this. This comes up with AppCache.php and AppKernel.php too.
Isn't the solution to wrap the class in a bracketed namespace? e.g.,