File "MultiDumpHandler.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/facade/ignition/src/DumpRecorder/MultiDumpHandler.php
File size: 400 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Facade\Ignition\DumpRecorder;
class MultiDumpHandler
{
/** @var array */
protected $handlers = [];
public function dump($value)
{
foreach ($this->handlers as $handler) {
$handler($value);
}
}
public function addHandler(callable $callable = null): self
{
$this->handlers[] = $callable;
return $this;
}
}