We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffaa8be commit 41d0565Copy full SHA for 41d0565
1 file changed
src/Types/Concerns/HasProperties.php
@@ -342,9 +342,9 @@ protected function addPropertiesToSchema(array $schema): array
342
/**
343
* Resolve the property title from a schema instance.
344
*/
345
- protected function resolvePropertyTitle(JsonSchema $property): ?string
+ protected function resolvePropertyTitle(JsonSchema $jsonSchema): ?string
346
{
347
- return $property->getInitialTitle() ?? $property->getTitle();
+ return $jsonSchema->getInitialTitle() ?? $jsonSchema->getTitle();
348
}
349
350
0 commit comments