Completed
Push — master ( dfd9c5...ccebf0 )
by Mark
161:27 queued 155:49
created

src/PhpSpreadsheet/Calculation/Exception.php (1 issue)

Severity
1
<?php
2
3
namespace PhpOffice\PhpSpreadsheet\Calculation;
4
5
use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException;
6
7
class Exception extends PhpSpreadsheetException
8
{
9
    /**
10
     * Error handler callback.
11
     *
12
     * @param mixed $code
13
     * @param mixed $string
14
     * @param mixed $file
15
     * @param mixed $line
16
     * @param mixed $context
17
     */
18
    public static function errorHandlerCallback($code, $string, $file, $line, $context)
0 ignored issues
show
The parameter $context is not used and could be removed. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-unused  annotation

18
    public static function errorHandlerCallback($code, $string, $file, $line, /** @scrutinizer ignore-unused */ $context)

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
19
    {
20
        $e = new self($string, $code);
21
        $e->line = $line;
22
        $e->file = $file;
23
24
        throw $e;
25
    }
26
}
27