From 87c53575f35419090610b7986641c2773b5d27fd Mon Sep 17 00:00:00 2001 From: Reedy Date: Thu, 6 Sep 2012 22:29:10 +0100 Subject: [PATCH] Add some trailing whitespace Change-Id: I0d43d82e2d78f86e50fac82f10bd1d7cebac176c --- includes/Timestamp.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Timestamp.php b/includes/Timestamp.php index 16be775add..c9ba8d9185 100644 --- a/includes/Timestamp.php +++ b/includes/Timestamp.php @@ -140,14 +140,14 @@ class MWTimestamp { try { $final = new DateTime( $strtime, new DateTimeZone( 'GMT' ) ); } catch(Exception $e) { - throw new TimestampException( __METHOD__ . 'Invalid timestamp format.' ); + throw new TimestampException( __METHOD__ . ' Invalid timestamp format.' ); } } else { $final = strtotime( $strtime ); } if( $final === false ) { - throw new TimestampException( __METHOD__ . 'Invalid timestamp format.' ); + throw new TimestampException( __METHOD__ . ' Invalid timestamp format.' ); } $this->timestamp = $final; } -- 2.20.1