for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
$app = new Application;
$app->setLogger(new class implements Logger {
public function log(string $msg) {
echo $msg;
}
});