13 lines
251 B
PHP
Executable File
13 lines
251 B
PHP
Executable File
<?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;
|
|
}
|