瀏覽代碼

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)
Nimit Kalra 10 年之前
父節點
當前提交
b2b9688c92
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Composer/Console/HtmlOutputFormatter.php

+ 1 - 1
src/Composer/Console/HtmlOutputFormatter.php

@@ -83,6 +83,6 @@ class HtmlOutputFormatter extends OutputFormatter
             }
         }
 
-        return $out . '">'.$matches[2].'</span>';
+        return $out.'">'.$matches[2].'</span>';
     }
 }