1 | <?php |
||
9 | abstract class AbstractStrategy implements StrategyInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $responseDecorators = []; |
||
15 | |||
16 | 45 | public function addResponseDecorator(callable $decorator): StrategyInterface |
|
21 | |||
22 | 30 | protected function decorateResponse(ResponseInterface $response): ResponseInterface |
|
30 | } |
||
31 |