Licitator 1.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
309 B

5 years ago
  1. <?php
  2. namespace Prometeo\CommandsBundle\Annotations;
  3. /**
  4. * @Annotation
  5. * @Target({"METHOD"})
  6. */
  7. class AdminMethod
  8. {
  9. /**
  10. * @Required
  11. *
  12. * @var string
  13. */
  14. public $text;
  15. /**
  16. * @return string
  17. */
  18. public function getText()
  19. {
  20. return $this->text;
  21. }
  22. }