We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fd247d commit f82476dCopy full SHA for f82476d
src/OriginException.php
@@ -33,16 +33,13 @@ class OriginException extends \Exception
33
* @param string $originCall Original call which lead to the exception
34
* @param string $originFile File in which the problem originated
35
* @param int $originLine Line on which the problem originated
36
- * @param string $message
37
- * @param int $code
38
- * @param \Throwable|null $previous
39
*/
40
public function __construct(
41
string $originCall,
42
string $originFile,
43
int $originLine,
44
- $message = "",
45
- $code = 0,
+ string $message = "",
+ int $code = 0,
46
?\Throwable $previous = null
47
) {
48
parent::__construct($message, $code, $previous);
0 commit comments