for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author @fabfuel <[email protected]>
* @created 14.11.14, 06:57
*/
namespace Fabfuel\Prophiler\Adapter;
use Fabfuel\Prophiler\ProfilerInterface;
abstract class AdapterAbstract
{
* @var ProfilerInterface
protected $profiler;
public function __construct(ProfilerInterface $profiler)
$this->setProfiler($profiler);
}
* @return ProfilerInterface
public function getProfiler()
return $this->profiler;
* @param ProfilerInterface $profiler
public function setProfiler(ProfilerInterface $profiler)
$this->profiler = $profiler;