Skip to content
Snippets Groups Projects
Commit e88c7eff authored by Jan Kuchař's avatar Jan Kuchař
Browse files

Merge branch 'fix-nullable-doc-comment' into 'master'

fix: delegate requiresDocComment() to subtype in NullableType

See merge request !55
parents d1a269ba a604f1a0
No related branches found
No related tags found
1 merge request!55fix: delegate requiresDocComment() to subtype in NullableType
Pipeline #37327 passed
......@@ -34,13 +34,13 @@ final class NullableType implements CompositeType
public function isNullable(): bool
{
return TRUE;
return true;
}
public function requiresDocComment(): bool
{
return FALSE;
return $this->type->requiresDocComment();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment