1 | <?php |
||
7 | trait DeprecationNoticeSupressor |
||
8 | { |
||
9 | /** |
||
10 | * Stores the original php error reporting value. |
||
11 | */ |
||
12 | private $originalErrorReporting; |
||
13 | |||
14 | /** |
||
15 | * @BeforeScenario |
||
16 | */ |
||
17 | public function suppressDepreciationNotices() |
||
21 | |||
22 | /** |
||
23 | * @AfterScenario |
||
24 | */ |
||
25 | public function restoreErrorReporting() |
||
29 | } |
||
30 |