| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class PatchExecutionVariablesCmd extends AbstractPatchVariablesCmd |
||
| 9 | { |
||
| 10 | public function __construct(string $executionId, array $modifications, array $deletions, bool $isLocal) |
||
| 11 | { |
||
| 12 | parent::__construct($executionId, $modifications, $deletions, $isLocal); |
||
| 13 | } |
||
| 14 | |||
| 15 | protected function getSetVariableCmd(): SetExecutionVariablesCmd |
||
| 16 | { |
||
| 17 | return new SetExecutionVariablesCmd($this->entityId, $this->variables, $this->isLocal); |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function getRemoveVariableCmd(): RemoveExecutionVariablesCmd |
||
| 21 | { |
||
| 22 | return new RemoveExecutionVariablesCmd($this->entityId, $this->deletions, $this->isLocal); |
||
| 23 | } |
||
| 24 | |||
| 25 | public function logVariableOperation(CommandContext $commandContext): void |
||
| 32 | ); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |