Skip to content

Commit 84ed240

Browse files
authored
bug #896 Fixed incorrect MissingArgumentException parent constructor values (acrobat)
This PR was merged into the 2.x branch. Discussion ---------- A bug caught by phpstan Commits ------- e31de4e Fixed incorrect MissingArgumentException parent constructor values
2 parents 5bb8142 + e31de4e commit 84ed240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Github/Exception/MissingArgumentException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ public function __construct($required, $code = 0, $previous = null)
1515
$required = [$required];
1616
}
1717

18-
parent::__construct(sprintf('One or more of required ("%s") parameters is missing!', implode('", "', $required)), $code, $previous);
18+
parent::__construct(sprintf('One or more of required ("%s") parameters is missing!', implode('", "', $required)), $code, 1, __FILE__, __LINE__, $previous);
1919
}
2020
}

0 commit comments

Comments
 (0)