Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/endroid/qr-code/src/Builder/
Upload File :
Current File : //home/rtorresani/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;
}