mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-03-11 21:06:58 +01:00
13 lines
251 B
PHP
13 lines
251 B
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;
|
|
}
|