Переглянути джерело

Merge pull request #7467 from staabm/less-count

Use variable to call count() less often
Rob 6 роки тому
батько
коміт
006c921abd
1 змінених файлів з 3 додано та 2 видалено
  1. 3 2
      src/Composer/DependencyResolver/RuleWatchNode.php

+ 3 - 2
src/Composer/DependencyResolver/RuleWatchNode.php

@@ -37,8 +37,9 @@ class RuleWatchNode
 
         $literals = $rule->getLiterals();
 
-        $this->watch1 = count($literals) > 0 ? $literals[0] : 0;
-        $this->watch2 = count($literals) > 1 ? $literals[1] : 0;
+        $literalCount = count($literals);
+        $this->watch1 = $literalCount > 0 ? $literals[0] : 0;
+        $this->watch2 = $literalCount > 1 ? $literals[1] : 0;
     }
 
     /**