for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace think\log;
use think\Log;
/**
* Class ChannelSet
* @package think\log
* @mixin Channel
*/
class ChannelSet
{
protected $log;
protected $channels;
public function __construct(Log $log, array $channels)
$this->log = $log;
$this->channels = $channels;
}
public function __call($method, $arguments)
foreach ($this->channels as $channel) {
$this->log->driver($channel)->{$method}(...$arguments);