13 lines
293 B
PHP
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 🐿️💥");
|
|
}
|
|
}
|