diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Mapping/Driver/RepeatableAttributeCollection.php')
-rw-r--r-- | vendor/doctrine/orm/src/Mapping/Driver/RepeatableAttributeCollection.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Mapping/Driver/RepeatableAttributeCollection.php b/vendor/doctrine/orm/src/Mapping/Driver/RepeatableAttributeCollection.php new file mode 100644 index 0000000..2f6ae93 --- /dev/null +++ b/vendor/doctrine/orm/src/Mapping/Driver/RepeatableAttributeCollection.php | |||
@@ -0,0 +1,16 @@ | |||
1 | <?php | ||
2 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Doctrine\ORM\Mapping\Driver; | ||
6 | |||
7 | use ArrayObject; | ||
8 | use Doctrine\ORM\Mapping\MappingAttribute; | ||
9 | |||
10 | /** | ||
11 | * @template-extends ArrayObject<int, T> | ||
12 | * @template T of MappingAttribute | ||
13 | */ | ||
14 | final class RepeatableAttributeCollection extends ArrayObject | ||
15 | { | ||
16 | } | ||