You are here

public function CronJob::__construct in Ultimate Cron 8.2

CronJob constructor.

Parameters

array $values:

string $entity_type:

Overrides ConfigEntityBase::__construct

File

src/Entity/CronJob.php, line 144

Class

CronJob
Class for handling cron jobs.

Namespace

Drupal\ultimate_cron\Entity

Code

public function __construct(array $values, $entity_type) {
  parent::__construct($values, $entity_type);
  $this->classResolver = \Drupal::service('class_resolver');
  $this->moduleExtensionList = \Drupal::service('extension.list.module');
}