1
0
Fork 0
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:
epriestley 2012-06-02 14:01:06 -07:00
parent 6a8ac91599
commit cb1177497e
2 changed files with 2 additions and 2 deletions

View file

@ -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',

View file

@ -19,7 +19,7 @@
/**
* @group maniphest
*/
final class ManiphestAction extends PhrictionConstants {
final class ManiphestAction extends ManiphestConstants {
const ACTION_CREATE = 'create';
const ACTION_CLOSE = 'close';