nonvalidroute.xml 540 B

12345678910111213
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <routes xmlns="http://symfony.com/schema/routing"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">
  5. <route id="blog_show" path="/blog/{slug}">
  6. <default key="_controller">MyBundle:Blog:show</default>
  7. <requirement key="_method">GET</requirement>
  8. <option key="compiler_class">RouteCompiler</option>
  9. <foo key="bar">baz</foo>
  10. </route>
  11. </routes>