Route.php 179 B

1234567891011
  1. <?php
  2. namespace Doctrine\Tests\Common\Annotations\Fixtures\Annotation;
  3. /** @Annotation */
  4. class Route
  5. {
  6. /** @var string @Required */
  7. public $pattern;
  8. public $name;
  9. }