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