Skip to content

Commit

Permalink
phpstan triggered
Browse files Browse the repository at this point in the history
  • Loading branch information
rodber committed Nov 21, 2024
1 parent 77602b3 commit 19702c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"amphp/parallel": "^2.2",
"chevere/action": "^1.0.0",
"chevere/data-structure": "^1.0.1",
"chevere/parameter": "^1.0.x-dev",
"chevere/parameter": "^1.0.0",
"chevere/regex": "^1.0.1"
},
"require-dev": {
"chevere/var-dump": "^1.0",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5",
"symplify/easy-coding-standard": "^12.2"
},
Expand Down
4 changes: 2 additions & 2 deletions src/Jobs.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ public function __construct(JobInterface ...$jobs)
$this->map = new Map();
$this->jobs = new Vector();
$this->graph = new Graph();
$this->variables = new Map();
$this->references = new Map();
$this->variables = new Map(); // @phpstan-ignore-line
$this->references = new Map(); // @phpstan-ignore-line
$this->putAdded(...$jobs);
}

Expand Down
1 change: 0 additions & 1 deletion src/Workflow.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ public function parameters(): ParametersInterface
}

/**
* @throws \TypeError
* @throws OutOfBoundsException
*/
public function getJobResponseParameter(string $job): ParameterInterface
Expand Down

0 comments on commit 19702c4

Please sign in to comment.