Skip to content

Commit c555a92

Browse files
committed
Bump version
1 parent 74de08a commit c555a92

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Understand/UnderstandLaravel5/Logger.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Logger
99
/**
1010
* Version Number
1111
*/
12-
const VERSION = 2.3;
12+
const VERSION = 2.4;
1313

1414
/**
1515
* Field provider
@@ -62,7 +62,7 @@ protected function prepare($log, array $additional = [], array $customFields = [
6262
{
6363
$log = ['message' => $log];
6464
}
65-
65+
6666
if (isset($log['message']))
6767
{
6868
$log['message'] = $this->formatMessage($log['message']);
@@ -98,10 +98,10 @@ protected function resolveData($log, array $additional = [], array $customFields
9898

9999
return $data;
100100
}
101-
101+
102102
/**
103103
* Format message field
104-
*
104+
*
105105
* @param string $message
106106
* @return string
107107
*/
@@ -111,13 +111,13 @@ protected function formatMessage($message)
111111
{
112112
return (string)$message;
113113
}
114-
114+
115115
// cast boolean values to "1" or "0" strings
116116
if ($message)
117117
{
118118
return '1';
119119
}
120-
120+
121121
return '0';
122122
}
123123

0 commit comments

Comments
 (0)