You are here

Cron.php in DRD Agent 8.3

Same filename and directory in other branches
  1. 4.0.x src/Agent/Action/Cron.php

File

src/Agent/Action/Cron.php
View source
<?php

namespace Drupal\drd_agent\Agent\Action;


/**
 * Provides a 'Cron' code.
 */
class Cron extends Base {

  /**
   * {@inheritdoc}
   */
  public function execute() {

    /** @noinspection NullPointerExceptionInspection */
    $this->container
      ->get('cron')
      ->run();
    return [];
  }

}

Classes

Namesort descending Description
Cron Provides a 'Cron' code.