| 1 | <?php  | 
            ||
| 10 | class Configuration  | 
            ||
| 11 | { | 
            ||
| 12 | /**  | 
            ||
| 13 | * @var ConfigInterface  | 
            ||
| 14 | */  | 
            ||
| 15 | private $cronConfigurationInterface;  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * Configuration constructor.  | 
            ||
| 19 | * @param ConfigInterface $config  | 
            ||
| 20 | */  | 
            ||
| 21 | public function __construct(ConfigInterface $config)  | 
            ||
| 25 | |||
| 26 | /**  | 
            ||
| 27 | * @return array  | 
            ||
| 28 | */  | 
            ||
| 29 | public function getCronConfiguration()  | 
            ||
| 45 | }  | 
            ||
| 46 |