You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR was merged into the 2.x branch.
Discussion
----------
A bug caught by phpstan
Commits
-------
e31de4e Fixed incorrect MissingArgumentException parent constructor values
Copy file name to clipboardExpand all lines: lib/Github/Exception/MissingArgumentException.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,6 @@ public function __construct($required, $code = 0, $previous = null)
15
15
$required = [$required];
16
16
}
17
17
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);
0 commit comments