for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Webino™ (http://webino.sk)
*
* @link https://github.com/webino for the canonical source repository
* @copyright Copyright (c) 2015-2017 Webino, s.r.o. (http://webino.sk)
* @author Peter Bačinský <[email protected]>
* @license BSD-3-Clause
*/
namespace WebinoAppLib\Service;
use Tracy\IBarPanel;
* Class NullDebugger
class NullDebugger implements DebuggerInterface
{
* {@inheritdoc}
public function getBarPanel($id)
return null;
}
public function setBarPanel(IBarPanel $panel, $id = null)
return $this;
public function setBarInfo($info, $value = null)
public function dump($subject, $return = false)
return;
public function barDump($subject, $title = null, array $options = null)
public function timer($name = null)
return 0;