You are here

public static function CronHookHandler::create in Entity Share Cron 3.0.x

Instantiates a new instance of this class.

This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.

Overrides ContainerInjectionInterface::create

File

src/HookHandler/CronHookHandler.php, line 81

Class

CronHookHandler
Hook handler for the cron() hook.

Namespace

Drupal\entity_share_cron\HookHandler

Code

public static function create(ContainerInterface $container) {
  return new static($container
    ->get('config.factory'), $container
    ->get('state'), $container
    ->get('logger.channel.entity_share_cron'), $container
    ->get('entity_share_cron'));
}