Skip to content

Commit cb5fc31

Browse files
authored
Fix typo in "signatures" (#429)
1 parent f6f479f commit cb5fc31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generator/src/PhpStanFunctions/PhpStanFunction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class PhpStanFunction
2121
public function __construct(array $signature)
2222
{
2323
if (count($signature) < 1) {
24-
throw new \RuntimeException('Invalid signoatures');
24+
throw new \RuntimeException('Invalid signatures');
2525
}
2626
$this->returnType = new PhpStanType(\array_shift($signature));
2727
foreach ($signature as $name => $type) {

0 commit comments

Comments
 (0)