1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02: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:
Jakub Vrana 2013-07-10 08:25:40 -07:00
parent 6a40df529d
commit fe76729af5

View file

@ -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.");
}