We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c135428 commit c96e145Copy full SHA for c96e145
src/LaunchJobMessage.php
@@ -12,10 +12,13 @@ final class LaunchJobMessage
12
private string $jobName;
13
14
/**
15
- * @var array
+ * @phpstan-var array<string, mixed>
16
*/
17
private array $configuration;
18
19
+ /**
20
+ * @phpstan-param array<string, mixed> $configuration
21
+ */
22
public function __construct(string $jobName, array $configuration = [])
23
{
24
$this->jobName = $jobName;
@@ -27,6 +30,9 @@ public function getJobName(): string
27
30
return $this->jobName;
28
31
}
29
32
33
34
+ * @phpstan-return array<string, mixed>
35
36
public function getConfiguration(): array
37
38
return $this->configuration;
0 commit comments