diff --git a/vendor/trails/src/dispatcher.php b/vendor/trails/src/dispatcher.php index 59bf8d961c32fedd59e7a05e0ea26ab310309fe8..58f55b1b89a97d9647eeb11148cf43001e2273be 100644 --- a/vendor/trails/src/dispatcher.php +++ b/vendor/trails/src/dispatcher.php @@ -255,14 +255,12 @@ class Trails_Dispatcher { * @param string the error message * @param string the filename that the error was raised in * @param integer the line number the error was raised at - * @param array an array of every variable that existed in the scope the - * error was triggered in * * @throws Trails_Exception * * @return void */ - function error_handler($errno, $string, $file, $line, $context) { + function error_handler($errno, $string, $file, $line) { if (!(5888 & $errno)) { return false; } diff --git a/vendor/trails/trails.php b/vendor/trails/trails.php index b88a4a90cd1020048cec923ddd989e6c3cdd0479..96b9562da078d4256e64af0ef3a28bb22baaaac7 100644 --- a/vendor/trails/trails.php +++ b/vendor/trails/trails.php @@ -283,14 +283,12 @@ class Trails_Dispatcher { * @param string the error message * @param string the filename that the error was raised in * @param integer the line number the error was raised at - * @param array an array of every variable that existed in the scope the - * error was triggered in * * @throws Trails_Exception * * @return void */ - function error_handler($errno, $string, $file, $line, $context) { + function error_handler($errno, $string, $file, $line) { if (!(5888 & $errno)) { return false; }