Skip to content

Commit 47ce76e

Browse files
committed
Fix mixed for PHP 7 support
1 parent 350c289 commit 47ce76e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/StackkitCloudTask.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ public function getNumberOfAttempts(): int
6868
->count();
6969
}
7070

71-
public function setMetadata(string $key, mixed $value): void
71+
/**
72+
* @param mixed $value
73+
*/
74+
public function setMetadata(string $key, $value): void
7275
{
7376
$metadata = $this->getMetadata();
7477

0 commit comments

Comments
 (0)