From 1b68f9151e439e43c42db3c82e5136b0817f7db5 Mon Sep 17 00:00:00 2001 From: mwhittom Date: Tue, 10 Sep 2013 08:08:31 -0500 Subject: [PATCH] removed excess space at end of function call --- src/Composer/Util/Perforce.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Util/Perforce.php b/src/Composer/Util/Perforce.php index 1ae0316df..7ac147b49 100644 --- a/src/Composer/Util/Perforce.php +++ b/src/Composer/Util/Perforce.php @@ -299,7 +299,7 @@ class Perforce { fwrite($spec, 'Client: ' . $this->getClient() . PHP_EOL . PHP_EOL); fwrite($spec, 'Update: ' . date('Y/m/d H:i:s') . PHP_EOL . PHP_EOL); - fwrite($spec, 'Access: ' . date('Y/m/d H:i:s') . PHP_EOL ); + fwrite($spec, 'Access: ' . date('Y/m/d H:i:s') . PHP_EOL); fwrite($spec, 'Owner: ' . $this->getUser() . PHP_EOL . PHP_EOL); fwrite($spec, 'Description:' . PHP_EOL); fwrite($spec, ' Created by ' . $this->getUser() . ' from composer.' . PHP_EOL . PHP_EOL);