mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-07 12:28:28 +01:00
1ba52fac86
Summary: Ref T2015. All the Drydock query classes share the application method; move it into a shared base class to slightly shrink the codebase. Test Plan: Browsed query UIs. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2015 Differential Revision: https://secure.phabricator.com/D7837
10 lines
185 B
PHP
10 lines
185 B
PHP
<?php
|
|
|
|
abstract class DrydockQuery
|
|
extends PhabricatorCursorPagedPolicyAwareQuery {
|
|
|
|
public function getQueryApplicationClass() {
|
|
return 'PhabricatorApplicationDrydock';
|
|
}
|
|
|
|
}
|