1
0
Fork 0

Use variable to call count() less often

pull/7467/head
Markus Staab 2018-07-12 20:44:24 +02:00
parent 68d468d683
commit 50565cb0c8
1 changed files with 3 additions and 2 deletions

View File

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