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 3a0a20d commit 3aa8c68Copy full SHA for 3aa8c68
test.php
@@ -1,4 +1,9 @@
1
-<?php include('Embed/autoloader.php'); ?>
+<?php
2
+ini_set('display_errors', '1');
3
+ini_set('display_startup_errors', '1');
4
+
5
+include('Embed/autoloader.php');
6
+?>
7
8
<!DOCTYPE html>
9
@@ -51,7 +56,7 @@
51
56
</head>
52
57
53
58
<?php
54
- public function getOption($name, $default = null)
59
+ function getOption($name, $default = null)
55
60
{
61
return isset($_GET['options'][$name]) ? $_GET['options'][$name] : $default;
62
}
0 commit comments