Merge pull request #7467 from staabm/less-count

Use variable to call count() less often
main
Rob 6 years ago committed by GitHub
commit 006c921abd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;
}
/**

Loading…
Cancel
Save