Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2014-11-28 05:43:42 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2014-11-28 05:43:42 +0300
commit671f81af1acc52cba90e04eab4dd72a68241a3d3 (patch)
tree567f36fecaaec79adff9e2459858e2d6ecebea0f /core/ExceptionHandler.php
parentaf3272eb51baf115bd40a7f0ae15709a0712bb7b (diff)
Added missing type-hint
Diffstat (limited to 'core/ExceptionHandler.php')
-rw-r--r--core/ExceptionHandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ExceptionHandler.php b/core/ExceptionHandler.php
index 8566385070..513b1efcaa 100644
--- a/core/ExceptionHandler.php
+++ b/core/ExceptionHandler.php
@@ -33,7 +33,7 @@ class ExceptionHandler
set_exception_handler(array('\\Piwik\\ExceptionHandler', 'logException'));
}
- public static function formatFileAndDBLogMessage(&$message, $level, $tag, $datetime, $log)
+ public static function formatFileAndDBLogMessage(&$message, $level, $tag, $datetime, Log $log)
{
if ($message instanceof \Exception) {
$message = sprintf("%s(%d): %s\n%s", $message->getFile(), $message->getLine(), $message->getMessage(),