1 | <?php |
||
19 | final class LiteralArgumentFactory implements ArgumentFactory |
||
20 | { |
||
21 | |||
22 | 1 | public function understandsString(string $source): bool |
|
26 | |||
27 | 1 | public function understandsArray(array $source): bool |
|
31 | |||
32 | 1 | public function createArgumentFromString(string $source): Argument |
|
40 | |||
41 | 1 | public function createArgumentFromArray(array $source): Argument |
|
45 | |||
46 | } |
||
47 |