Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/jms/serializer/src/Builder/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/jms/serializer/src/Builder/DriverFactoryInterface.php

<?php

declare(strict_types=1);

namespace JMS\Serializer\Builder;

use Doctrine\Common\Annotations\Reader;
use Metadata\Driver\DriverInterface;

interface DriverFactoryInterface
{
    public function createDriver(array $metadataDirs, ?Reader $annotationReader = null): DriverInterface;
}