for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Balloon
*
* @author Raffael Sahli <[email protected]>
* @copyright Copryright (c) 2012-2017 gyselroth GmbH (https://gyselroth.com)
* @license GPL-3.0 https://opensource.org/licenses/GPL-3.0
*/
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;
}