| Total Complexity | 1 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 17 | abstract class AbstractWorkflow | ||
| 18 | { | ||
| 19 | /** | ||
| 20 | * @var WorkflowRegistryInterface | ||
| 21 | */ | ||
| 22 | protected $registry; | ||
| 23 | |||
| 24 | /** | ||
| 25 | * @param WorkflowRegistryInterface $registry | ||
| 26 | */ | ||
| 27 | public function __construct(WorkflowRegistryInterface $registry) | ||
| 31 | } | ||
| 32 | |||
| 33 | /** | ||
| 34 | * @return array | ||
| 35 | */ | ||
| 36 | abstract protected function getConfig(); | ||
| 37 | } | ||
| 38 |