D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
psa
/
admin
/
plib
/
vendor
/
jms
/
serializer
/
src
/
Metadata
/
Driver
/
Filename :
AttributeDriver.php
back
Copy
<?php declare(strict_types=1); namespace JMS\Serializer\Metadata\Driver; use JMS\Serializer\Annotation\SerializerAttribute; class AttributeDriver extends AnnotationOrAttributeDriver { /** * @return list<SerializerAttribute> */ protected function getClassAnnotations(\ReflectionClass $class): array { return array_map( static fn (\ReflectionAttribute $attribute): object => $attribute->newInstance(), $class->getAttributes(SerializerAttribute::class, \ReflectionAttribute::IS_INSTANCEOF), ); } /** * @return list<SerializerAttribute> */ protected function getMethodAnnotations(\ReflectionMethod $method): array { return array_map( static fn (\ReflectionAttribute $attribute): object => $attribute->newInstance(), $method->getAttributes(SerializerAttribute::class, \ReflectionAttribute::IS_INSTANCEOF), ); } /** * @return list<SerializerAttribute> */ protected function getPropertyAnnotations(\ReflectionProperty $property): array { return array_map( static fn (\ReflectionAttribute $attribute): object => $attribute->newInstance(), $property->getAttributes(SerializerAttribute::class, \ReflectionAttribute::IS_INSTANCEOF), ); } }