We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee282ef commit af179c6Copy full SHA for af179c6
tests/test.php
@@ -5,7 +5,19 @@
5
error_reporting(E_ALL);
6
7
$code = file_get_contents(__DIR__ . '/assets/admin.php');
8
-$code = \Ganlv\EnphpDecoder\AutoDecoder::decode($code);
+try {
9
+ $code = \Ganlv\EnphpDecoder\AutoDecoder::decode($code);
10
+ echo $code;
11
+} catch (Exception $e) {
12
+ echo $e->getTraceAsString();
13
+ exit(1);
14
+}
15
16
$code = file_get_contents(__DIR__ . '/assets/index.php');
17
18
19
20
21
22
+ exit(2);
23
0 commit comments