From cb1177497e6f2d2897b2182dd36de0a593e25d07 Mon Sep 17 00:00:00 2001 From: epriestley Date: Sat, 2 Jun 2012 14:01:06 -0700 Subject: [PATCH] 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 --- src/__phutil_library_map__.php | 2 +- src/applications/maniphest/constants/ManiphestAction.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php index 1fcf4c109b..6e9b9fcd0c 100644 --- a/src/__phutil_library_map__.php +++ b/src/__phutil_library_map__.php @@ -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', diff --git a/src/applications/maniphest/constants/ManiphestAction.php b/src/applications/maniphest/constants/ManiphestAction.php index a58c1e61c2..8926db9c4d 100644 --- a/src/applications/maniphest/constants/ManiphestAction.php +++ b/src/applications/maniphest/constants/ManiphestAction.php @@ -19,7 +19,7 @@ /** * @group maniphest */ -final class ManiphestAction extends PhrictionConstants { +final class ManiphestAction extends ManiphestConstants { const ACTION_CREATE = 'create'; const ACTION_CLOSE = 'close';