From fe76729af5495a496435b5bbbb81a5a6724d696a Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 10 Jul 2013 08:25:40 -0700 Subject: [PATCH] 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 --- src/applications/policy/filter/PhabricatorPolicy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/policy/filter/PhabricatorPolicy.php b/src/applications/policy/filter/PhabricatorPolicy.php index c639f98088..f5f70c7707 100644 --- a/src/applications/policy/filter/PhabricatorPolicy.php +++ b/src/applications/policy/filter/PhabricatorPolicy.php @@ -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."); }