1 | <?php |
||
14 | final class InMemoryRecorder implements PlayerInterface, RecorderInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var ResponseInterface[] |
||
18 | */ |
||
19 | private $responses = []; |
||
20 | |||
21 | public function replay(string $name): ?ResponseInterface |
||
25 | |||
26 | public function record(string $name, ResponseInterface $response): void |
||
30 | |||
31 | public function clear(): void |
||
35 | } |
||
36 |