| 1 | <?php |
||
| 8 | class PathAttributeResolverRegistry |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var array|PathAttributeResolverInterface[] by type |
||
| 12 | */ |
||
| 13 | private $resolvers; |
||
| 14 | |||
| 15 | 81 | public function __construct() |
|
| 19 | |||
| 20 | 81 | public function registerPathAttributeResolver(PathAttributeResolverInterface $resolver, string $type) |
|
| 24 | |||
| 25 | 81 | public function getResolverByType(string $type): PathAttributeResolverInterface |
|
| 35 | } |
||
| 36 |