for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class Logfile
*
* @filesource Logfile.php
* @created 04.01.2018
* @package chillerlan\Logger\Output
* @author Smiley <[email protected]>
* @copyright 2018 Smiley
* @license MIT
*/
namespace chillerlan\Logger\Output;
class Logfile extends ConsoleLog{
protected function __log(string $level, string $message, array $context = null){
$data = $this->message($level, $message, $context);
$data
// ... @todo
}