Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 0 |
1 | <?php |
||
15 | 16 | public function add($alias, FormatInterface $handler) |
|
16 | { |
||
17 | 16 | if(false === \is_string($alias)) { |
|
18 | 1 | throw new FormatAliasTypeException('Format alias must be a string.'); |
|
19 | } |
||
20 | 15 | if(array_key_exists($alias, $this->formats)) { |
|
21 | throw new FormatAlreadyExistsException(sprintf('Format with alias `%s` already exists.', $alias)); |
||
22 | } |
||
23 | |||
24 | 15 | $this->formats[$alias] = $handler; |
|
25 | 15 | } |
|
26 | |||
32 |