1 | <?php |
||
10 | class XcodeLicenseErrorCatcherDecorator implements ChainProcessInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var ChainProcessInterface |
||
14 | */ |
||
15 | private $process; |
||
16 | |||
17 | /** |
||
18 | * @var UserInteraction |
||
19 | */ |
||
20 | private $userInteraction; |
||
21 | |||
22 | /** |
||
23 | * @param UserInteraction $userInteraction |
||
24 | * @param ChainProcessInterface $process |
||
25 | */ |
||
26 | public function __construct(UserInteraction $userInteraction, ChainProcessInterface $process) |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function execute(ChainContext $context) |
||
49 | } |
||
50 |