Your IP : 216.73.217.95


Current Path : /var/www/www.indacotrentino.com/www/vendor/endroid/qr-code/src/Builder/
Upload File :
Current File : /var/www/www.indacotrentino.com/www/vendor/endroid/qr-code/src/Builder/BuilderRegistryInterface.php

<?php

declare(strict_types=1);

namespace Endroid\QrCode\Builder;

interface BuilderRegistryInterface
{
    public function getBuilder(string $name): BuilderInterface;

    public function addBuilder(string $name, BuilderInterface $builder): void;
}