for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
/**
* Micro
*
* @author Raffael Sahli <[email protected]>
* @copyright Copyright (c) 2017 gyselroth GmbH (https://gyselroth.com)
* @license MIT https://opensource.org/licenses/MIT
*/
namespace Micro\Log\Adapter;
class Blackhole extends AbstractAdapter
{
* Log
* @param string $level
* @param string $message
* @return bool
public function log(string $level, string $message): bool
return true;
}