Skip to content

Commit

Permalink
feat: implement knd complaints response model
Browse files Browse the repository at this point in the history
  • Loading branch information
vicvolk committed Dec 24, 2021
1 parent e3485d7 commit 9d230e4
Show file tree
Hide file tree
Showing 30 changed files with 5,726 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .phpunit.result.cache

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Engine/Delegate/DelegateExecutionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function getCurrentActivityId(): string;
/**
* Gets the name of the current activity.
*/
public function getCurrentActivityName(): string;
public function getCurrentActivityName(): ?string;

/**
* return the Id of the activity instance currently executed by this execution
Expand Down
4 changes: 2 additions & 2 deletions src/Engine/Impl/Core/Instance/CoreExecution.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ abstract class CoreExecution extends AbstractVariableScope implements BaseDelega
protected $skipSubprocesses;

// atomic operations ////////////////////////////////////////////////////////
public function performOperation(CoreAtomicOperation $operation): void
public function performOperation(/*CoreAtomicOperation*/$operation): void
{
//LOG.debugPerformingAtomicOperation(operation, this);
$operation->execute($this);
}

public function performOperationSync(CoreAtomicOperation $operation): void
public function performOperationSync(/*CoreAtomicOperation*/$operation): void
{
//LOG.debugPerformingAtomicOperation(operation, this);
$operation->execute($this);
Expand Down
Loading

0 comments on commit 9d230e4

Please sign in to comment.