Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
Fix Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
YuryBandarchuk16 committed Aug 12, 2018
1 parent 5fb9199 commit 0194324
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Exceptions/UndocumentedDefinitionException.hh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ final class UndocumentedDefinitionException extends \Exception {
public function __construct(
private string $fieldname,
private string $fileName,
) {}
) {
parent::__construct();
}

<<__Override>>
public function getMessage(): string {
Expand Down

0 comments on commit 0194324

Please sign in to comment.