1 | <?php |
||
19 | final class LiteralArgumentFactory implements ArgumentFactory |
||
20 | { |
||
21 | |||
22 | public function understandsString(string $source): bool |
||
26 | |||
27 | public function understandsArray(array $source): bool |
||
31 | |||
32 | public function createArgumentFromString(string $source): Argument |
||
43 | |||
44 | public function createArgumentFromArray(array $source): Argument |
||
48 | |||
49 | } |
||
50 |