for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Monolol\Lolifiers;
use Monolol\Lolifier;
use Monolog\Logger;
class NotGiveAFuck implements Lolifier
{
const
MESSAGE = "It seems that your application has encountered an issue. But as we don't give a fuck, we will not tell you what the problem is. Have a good day.";
public function isHandling(array $record)
return true;
}
public function lolify(array $record)
if($record['level'] > Logger::INFO)
$record['message'] = self::MESSAGE;
return $record;