| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function clearAction(Request $request) |
||
| 32 | { |
||
| 33 | if (!$this->getParameter('kernel.debug')) { |
||
| 34 | throw new AccessDeniedException('You should be in debug mode to access this feature'); |
||
| 35 | } |
||
| 36 | $this->get('victoire_widget.widget_cache')->clear(); |
||
| 37 | |||
| 38 | return $this->redirect($request->headers->get('referer')); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |