Repository URL to install this package:
|
Version:
0.3.1 ▾
|
<?php
namespace CrazyFactory\Kpi;
abstract class Emitter implements EmitterInterface
{
/** @var StateRetrieverInterface $stateRetriever */
protected $stateRetriever;
/**
* @param StateRetrieverInterface|null $stateRetriever
*/
public function setStateRetriever(StateRetrieverInterface $stateRetriever = null)
{
$this->stateRetriever = $stateRetriever;
}
}