| 1 | <?php |
||
| 5 | class PrefixRegistry |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var array |
||
| 9 | */ |
||
| 10 | private $registry = []; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * PrefixRegistry constructor. |
||
| 14 | * @param array $registry |
||
| 15 | */ |
||
| 16 | 41 | public function __construct(array $registry) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @param string $scriptType |
||
| 38 | * @return array |
||
| 39 | */ |
||
| 40 | 37 | public function getPrefixes($scriptType) |
|
| 47 | } |
||
| 48 |