AnnotWithDefaultValue.php 171 B

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