Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
6b206711
Commit
6b206711
authored
Apr 01, 2016
by
Carsten Rose
Browse files
Error.php: adjusted signature to fullfill exception definition: 'previous' was missing.
parent
f460fa2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/report/Error.php
View file @
6b206711
...
...
@@ -41,12 +41,13 @@ class SyntaxReportException extends \Exception {
/**
* @param string $message
* @param int $code
* @param \Exception $file
* @param \Exception $previous
* @param $file
* @param $line
* @param array $customMessage
* @param array $fr_error
*/
public
function
__construct
(
$message
,
$code
,
$file
,
$line
,
$customMessage
=
array
(),
$fr_error
=
array
())
{
public
function
__construct
(
$message
,
$code
,
$previous
,
$file
,
$line
,
$customMessage
=
array
(),
$fr_error
=
array
())
{
parent
::
__construct
(
$message
);
$this
->
code
=
$code
;
$this
->
file
=
$file
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment