Skip to content

Commit

Permalink
#2213 - Fix return type of getDocBlock() method
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeckerson committed Aug 6, 2021
1 parent 08fb6a6 commit a9ce20f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Library/ClassConstant.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ public function getValueValue()
/**
* Returns the docblock related to the constant.
*
* @return string
* @return string|null
*/
public function getDocBlock(): string
public function getDocBlock(): ?string
{
return $this->docblock;
}
Expand Down

0 comments on commit a9ce20f

Please sign in to comment.