AnnotationReaderTest.php 247 B

12345678910111213
  1. <?php
  2. namespace Doctrine\Tests\Common\Annotations;
  3. use Doctrine\Common\Annotations\AnnotationReader;
  4. class AnnotationReaderTest extends AbstractReaderTest
  5. {
  6. protected function getReader()
  7. {
  8. return new AnnotationReader();
  9. }
  10. }