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 fb05a34 commit d98b572Copy full SHA for d98b572
src/Types/AbstractList.php
@@ -81,7 +81,7 @@ public function __toString(): string
81
}
82
83
if ($this->keyType) {
84
- return 'array<' . $this->keyType . ',' . $this->valueType . '>';
+ return 'array<' . $this->keyType . ', ' . $this->valueType . '>';
85
86
87
if ($this->valueType instanceof Compound) {
src/Types/Iterable_.php
@@ -30,7 +30,7 @@ public function __toString(): string
30
31
32
33
- return 'iterable<' . $this->keyType . ',' . $this->valueType . '>';
+ return 'iterable<' . $this->keyType . ', ' . $this->valueType . '>';
34
35
36
return 'iterable<' . $this->valueType . '>';
0 commit comments