1 | <?php namespace Limoncello\Validation\Captures; |
||
24 | class CaptureAggregator implements CaptureAggregatorInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var array |
||
28 | */ |
||
29 | private $remembered = []; |
||
30 | |||
31 | /** |
||
32 | * @inheritdoc |
||
33 | */ |
||
34 | 3 | public function remember($key, $value) |
|
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | */ |
||
42 | 4 | public function getCaptures() |
|
46 | } |
||
47 |