boxxo/src/Test/Surprise.php
Dominik Krenn 352707bb8c Boxxo initial squeak 🐿️
2025-07-04 11:28:32 +02:00

13 lines
293 B
PHP

<?php
namespace Chipperfluff\Boxxo\Test;
class Surprise {
public static function open() {
return "🎉 Surprise! Nothing works and yet everything compiles.";
}
public function crash() {
throw new \Exception("You poked the squirrel too hard 🐿️💥");
}
}