You are here

public function Base::init in DRD Agent 4.0.x

Same name and namespace in other branches
  1. 8.3 src/Agent/Action/Base.php \Drupal\drd_agent\Agent\Action\Base::init()

Parameters

\Drupal\drd_agent\Crypt\BaseMethodInterface $crypt:

array $arguments:

bool $debugMode:

Overrides BaseInterface::init

File

src/Agent/Action/Base.php, line 513

Class

Base
Base class for Remote DRD Action Code.

Namespace

Drupal\drd_agent\Agent\Action

Code

public function init(BaseMethodInterface $crypt, array $arguments, $debugMode) {
  $this->crypt = $crypt;
  $this->arguments = $arguments;
  $this->debugMode = $debugMode;
}