Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function execute(): ResponseInterface |
||
29 | { |
||
30 | $storeId = $this->getRequest()->getParam(PurgeMultipleForm::STORE_VIEW_FORM_PARAM); |
||
31 | $destinationUrl = $this->getRequest()->getParam(PurgeMultipleForm::PROCESS_URL_FORM_PARAM); |
||
32 | |||
33 | return $this->_redirect( |
||
34 | $destinationUrl, |
||
35 | [ |
||
36 | PurgeSingleForm::STORE_VIEW_FORM_PARAM => $storeId |
||
37 | ] |
||
38 | ); |
||
39 | } |
||
40 | } |
||
41 |