mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Make ManiphestAction extend from ManiphestConstants, not PhrictionConstants
Summary: See rPee620bde6dbc. Copy/paste derp. Not @vrana! Test Plan: arc liberate Reviewers: allenjohnashton, vrana, btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D2604
This commit is contained in:
parent
6a8ac91599
commit
cb1177497e
2 changed files with 2 additions and 2 deletions
|
@ -1471,7 +1471,7 @@ phutil_register_library_map(array(
|
|||
'LiskIsolationTestCase' => 'PhabricatorTestCase',
|
||||
'LiskIsolationTestDAO' => 'LiskDAO',
|
||||
'LiskIsolationTestDAOException' => 'Exception',
|
||||
'ManiphestAction' => 'PhrictionConstants',
|
||||
'ManiphestAction' => 'ManiphestConstants',
|
||||
'ManiphestAuxiliaryFieldDefaultSpecification' => 'ManiphestAuxiliaryFieldSpecification',
|
||||
'ManiphestAuxiliaryFieldTypeException' => 'Exception',
|
||||
'ManiphestAuxiliaryFieldValidationException' => 'Exception',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
/**
|
||||
* @group maniphest
|
||||
*/
|
||||
final class ManiphestAction extends PhrictionConstants {
|
||||
final class ManiphestAction extends ManiphestConstants {
|
||||
|
||||
const ACTION_CREATE = 'create';
|
||||
const ACTION_CLOSE = 'close';
|
||||
|
|
Loading…
Reference in a new issue