D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
vendor
/
jms
/
serializer
/
src
/
Builder
/
Filename :
DocBlockDriverFactory.php
back
Copy
<?php declare(strict_types=1); namespace JMS\Serializer\Builder; use Doctrine\Common\Annotations\Reader; use JMS\Serializer\Metadata\Driver\DocBlockDriver; use JMS\Serializer\Type\ParserInterface; use Metadata\Driver\DriverInterface; class DocBlockDriverFactory implements DriverFactoryInterface { /** * @var DriverFactoryInterface */ private $driverFactoryToDecorate; /** * @var ParserInterface|null */ private $typeParser; public function __construct(DriverFactoryInterface $driverFactoryToDecorate, ?ParserInterface $typeParser = null) { $this->driverFactoryToDecorate = $driverFactoryToDecorate; $this->typeParser = $typeParser; } public function createDriver(array $metadataDirs, ?Reader $annotationReader = null): DriverInterface { $driver = $this->driverFactoryToDecorate->createDriver($metadataDirs, $annotationReader); return new DocBlockDriver($driver, $this->typeParser); } }