From b2b9688c9281503f8dcd6e90cc5c9e51b698e233 Mon Sep 17 00:00:00 2001 From: Nimit Kalra Date: Wed, 18 Feb 2015 15:06:36 -0600 Subject: [PATCH] Conform with Symfony Coding Standards According to Symfony Coding Standards, a single space must be added around binary operators excluding the concatenation operator. "Add a single space around binary operators (==, &&, ...), with the exception of the concatenation (.) operator" (http://symfony.com/doc/current/contributing/code/standards.html) --- src/Composer/Console/HtmlOutputFormatter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Console/HtmlOutputFormatter.php b/src/Composer/Console/HtmlOutputFormatter.php index 56652bb69..8a79dba08 100644 --- a/src/Composer/Console/HtmlOutputFormatter.php +++ b/src/Composer/Console/HtmlOutputFormatter.php @@ -83,6 +83,6 @@ class HtmlOutputFormatter extends OutputFormatter } } - return $out . '">'.$matches[2].''; + return $out.'">'.$matches[2].''; } }