for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the MobileNotifBundle package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace LinkValue\MobileNotifBundle\Profiler;
use Symfony\Component\Stopwatch\StopwatchEvent;
/**
* NullClientProfiler.
* @package MobileNotifBundle
* @author Oliver Thebault <[email protected]>
class NullClientProfiler implements ClientProfilerInterface
{
* {@inheritdoc}
public function startProfiling($message)
return new StopwatchEvent(microtime());
}
public function stopProfiling(StopwatchEvent $event, $result)
$event->stop();
public function getCalls()
return array();