Lines Matching defs:priority
106 * @param $priority
109 function addRule($sourcePageId, $targetPageId, $priority): ?int
112 return $this->addRuleWithDate($sourcePageId, $targetPageId, $priority, $currentDate);
121 * @param $priority
125 function addRuleWithDate($matcher, $target, $priority, $creationDate): ?int
132 'priority' => $priority
153 function updateRule($id, $matcher, $target, $priority)
160 $priority,
165 $statement = 'update PAGE_RULES set matcher = ?, target = ?, priority = ?, timestamp = ? where id = ?';