Route.php 204 B

123456789101112
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures\Annotation;
  3. /** @Annotation */
  4. class Route
  5. {
  6. /** @var string @Required */
  7. public $pattern;
  8. /** @var mixed */
  9. public $name;
  10. }