File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 27
27
use function error_reporting ;
28
28
use function restore_error_handler ;
29
29
use function set_error_handler ;
30
- use ErrorException ;
31
30
use PHPUnit \Event ;
32
31
use PHPUnit \Event \Code \NoTestCaseObjectOnCallStackException ;
33
32
use PHPUnit \Runner \Baseline \Baseline ;
Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+ /*
3
+ * This file is part of PHPUnit.
4
+ *
5
+ * (c) Sebastian Bergmann <[email protected] >
6
+ *
7
+ * For the full copyright and license information, please view the LICENSE
8
+ * file that was distributed with this source code.
9
+ */
10
+ namespace PHPUnit \Runner ;
11
+
12
+ use Error ;
13
+
14
+ /**
15
+ * @internal This class is not covered by the backward compatibility promise for PHPUnit
16
+ */
17
+ final class ErrorException extends Error implements Exception
18
+ {
19
+ }
You can’t perform that action at this time.
0 commit comments