mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 04:20:55 +01:00
Fix PhabricatorWorkerTriggerQuery method visibility
Summary: I got these wrong and the test didn't trigger for some reason that I haven't looked into. Test Plan: `arc unit --everything` Reviewers: hach-que, btrahan Reviewed By: btrahan Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D11453
This commit is contained in:
parent
adf209e655
commit
ed2a5a9a34
1 changed files with 2 additions and 2 deletions
|
@ -67,13 +67,13 @@ final class PhabricatorWorkerTriggerQuery
|
|||
return $this;
|
||||
}
|
||||
|
||||
public function nextPage(array $page) {
|
||||
protected function nextPage(array $page) {
|
||||
// NOTE: We don't implement paging because we don't currently ever need
|
||||
// it and paging ORDER_EXCUTION is a hassle.
|
||||
throw new PhutilMethodNotImplementedException();
|
||||
}
|
||||
|
||||
public function loadPage() {
|
||||
protected function loadPage() {
|
||||
$task_table = new PhabricatorWorkerTrigger();
|
||||
|
||||
$conn_r = $task_table->establishConnection('r');
|
||||
|
|
Loading…
Reference in a new issue