File Manager Lite
Dir:
/home/u540325668/domains/mccsociety.org/public_html/vendor/facade/ignition/src/DumpRecorder
Upload
[..]
Dump.php (792 B)
Edit
Rename
Del
DumpHandler.php (466 B)
Edit
Rename
Del
HtmlDumper.php (730 B)
Edit
Rename
Del
MultiDumpHandler.php (400 B)
Edit
Rename
Del
Edit: MultiDumpHandler.php
<?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; } }
Simpan