From 651e90f88a5c6c0b1814d148a8fcd2bced161140 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Mon, 20 Aug 2012 16:29:39 -0500 Subject: [PATCH] CS fixes - trailing whitespace --- src/Adapter/PhpCode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Adapter/PhpCode.php b/src/Adapter/PhpCode.php index e0d1a27..dff47c8 100644 --- a/src/Adapter/PhpCode.php +++ b/src/Adapter/PhpCode.php @@ -44,7 +44,7 @@ public function unserialize($code) { ErrorHandler::start(E_ALL); $ret = null; - // This suppression is due to the fact that the ErrorHandler cannot + // This suppression is due to the fact that the ErrorHandler cannot // catch syntax errors, and is intentionally left in place. $eval = @eval('$ret=' . $code . ';'); $err = ErrorHandler::stop();