1 | <?php |
||
13 | final class ExceptionExtension implements ExtensionInterface |
||
14 | { |
||
15 | private $templateName; |
||
16 | |||
17 | public function __construct(string $templateName) |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function onPreExecute(Context $context) |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function onExecute(Context $context) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function onPostExecute(Context $context) |
||
50 | } |
||
51 |