mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix typo in variable name
Summary: Blame Rev: D6047 Test Plan: $ arc lint # with D6406 Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D6407
This commit is contained in:
parent
6a40df529d
commit
fe76729af5
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ final class PhabricatorPolicy {
|
|||
|
||||
if (!$handle) {
|
||||
throw new Exception(
|
||||
"Policy identifier is an object PHID ('{$phid_identifier}'), but no ".
|
||||
"Policy identifier is an object PHID ('{$policy_identifier}'), but no ".
|
||||
"object handle was provided. A handle must be provided for object ".
|
||||
"policies.");
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ final class PhabricatorPolicy {
|
|||
$handle_phid = $handle->getPHID();
|
||||
if ($policy_identifier != $handle_phid) {
|
||||
throw new Exception(
|
||||
"Policy identifier is an object PHID ('{$phid_identifier}'), but ".
|
||||
"Policy identifier is an object PHID ('{$policy_identifier}'), but ".
|
||||
"the provided handle has a different PHID ('{$handle_phid}'). The ".
|
||||
"handle must correspond to the policy identifier.");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue