| 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 | 21 | public function __construct(array $registry)  | 
            |
| 31 | |||
| 32 | /**  | 
            ||
| 33 | * @param string $scriptType  | 
            ||
| 34 | * @return array  | 
            ||
| 35 | */  | 
            ||
| 36 | 21 | public function getPrefixes($scriptType)  | 
            |
| 43 | }  | 
            ||
| 44 |