Constructor.
ProfilerStorageInterface $storage A ProfilerStorageInterface instance:
LoggerInterface $logger A LoggerInterface instance:
public function __construct(ProfilerStorageInterface $storage, LoggerInterface $logger = null) {
$this->storage = $storage;
$this->logger = $logger;
$this->collectors = array();
$this->enabled = true;
}