vendor/doctrine/persistence/src/Persistence/Reflection/TypedNoDefaultReflectionProperty.php line 10

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\Persistence\Reflection;
  4. /**
  5.  * PHP Typed No Default Reflection Property - special override for typed properties without a default value.
  6.  */
  7. class TypedNoDefaultReflectionProperty extends RuntimeReflectionProperty
  8. {
  9.     use TypedNoDefaultReflectionPropertyBase;
  10. }