Completed
Push — 2.0-dev ( bb1ebd...c93c7a )
by
unknown
22s queued 11s
created
src/Date.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
 			default:
172 172
 				$trace = debug_backtrace();
173 173
 				trigger_error(
174
-					'Undefined property via __get(): ' . $name . ' in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'],
174
+					'Undefined property via __get(): '.$name.' in '.$trace[0]['file'].' on line '.$trace[0]['line'],
175 175
 					E_USER_NOTICE
176 176
 				);
177 177
 		}
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,8 +86,7 @@
 block discarded – undo
86 86
 			if ($tz === null)
87 87
 			{
88 88
 				$tz = static::$gmt;
89
-			}
90
-			elseif (is_string($tz))
89
+			} elseif (is_string($tz))
91 90
 			{
92 91
 				$tz = new \DateTimeZone($tz);
93 92
 			}
Please login to merge, or discard this patch.