AnnotWithDefaultValue.php 174 B

12345678910
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures\Annotation;
  3. /** @Annotation */
  4. class AnnotWithDefaultValue
  5. {
  6. /** @var string */
  7. public $foo = 'bar';
  8. }