This commit is contained in:
Rushabh Gosar
2022-01-07 19:52:48 -08:00
parent 75e0d2f75a
commit 8ea938029a
127 changed files with 25750 additions and 20 deletions

13
TreasureHunt/Error.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
class Error
{
var $error = "";
public function reportError($err) {
var_dump($err);
echo '\n';
echo $err;
}
}
?>