Rename variable - I figured out what it meant
authorEileen McNaughton <emcnaughton@wikimedia.org>
Wed, 1 Mar 2023 20:09:49 +0000 (09:09 +1300)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Wed, 1 Mar 2023 20:09:49 +0000 (09:09 +1300)
tests/phpunit/CRM/Core/BAO/MessageTemplateTest.php

index 71dd3ae3ef9236918bbd0307f3c7468d34d99bd9..868340130a82936b8d7d482ef2d1c3caf3879fd7 100644 (file)
@@ -505,10 +505,10 @@ emo
     $tokenData = $this->getOldContactTokens();
     $this->setupContactFromTokeData($tokenData);
 
-    $ctx = ['contactId' => $tokenData['contact_id']];
-    $render = static function (string $templateText) use ($ctx, $tokenData) {
+    $context = ['contactId' => $tokenData['contact_id']];
+    $render = static function (string $templateText) use ($context, $tokenData) {
       try {
-        return CRM_Core_TokenSmarty::render(['text' => $templateText], $ctx)['text'];
+        return CRM_Core_TokenSmarty::render(['text' => $templateText], $context)['text'];
       }
       catch (\Throwable $t) {
         return 'EXCEPTION:' . $t->getMessage();