Make return type verified and accurate

parent 9a617edb
......@@ -19,7 +19,7 @@ class TypeTest extends TestCase
}
/**
* @return string[][]
* @return iterable<string[]>
*/
public function defaultTypesProvider() : iterable
{
......@@ -28,7 +28,10 @@ class TypeTest extends TestCase
continue;
}
yield [$constant->getValue()];
$constantValue = $constant->getValue();
self::assertIsString($constantValue);
yield [$constantValue];
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment