for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace nyx\diagnostics\debug\dumpers;
// Internal dependencies
use nyx\diagnostics\debug\interfaces;
/**
* Krumo Dumper
*
* A bridge allowing to use Krumo as a Dumper within the Debug subcomponent.
* Important note: This bridge relies on the krumo class being available, but it is not a Composer package. Please
* take a look at {@see http://krumo.sourceforge.net} on how to install and load it.
* @version 0.1.0
* @author Michal Chojnacki <[email protected]>
* @copyright 2012-2017 Nyx Dev Team
* @link https://github.com/unyx/nyx
*/
class Krumo implements interfaces\Dumper
{
* {@inheritDoc}
public function __invoke(...$vars)
// @todo Actual output handling.
echo call_user_func('krumo::dump', ...$vars);
}