You are here

public function Base::getArguments in DRD Agent 8.3

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

Get the arguments for this request.

Return value

array Normalised array of all arguments received with the request.

Overrides BaseInterface::getArguments

7 calls to Base::getArguments()
Blocks::execute in src/Agent/Action/Blocks.php
Execute an action.
DomainsEnableAll::execute in src/Agent/Action/DomainsEnableAll.php
Execute an action.
Download::execute in src/Agent/Action/Download.php
Execute an action.
ErrorLogs::execute in src/Agent/Action/ErrorLogs.php
Execute an action.
MaintenanceMode::execute in src/Agent/Action/MaintenanceMode.php
Execute an action.

... See full list

File

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

Class

Base
Base class for Remote DRD Action Code.

Namespace

Drupal\drd_agent\Agent\Action

Code

public function getArguments() : array {
  return $this->arguments;
}