From 61272e7ac31abed35face7486ff44999c0c5fe26 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 24 Mar 2021 10:11:15 -0700 Subject: [PATCH] Correct "getActiveBindings()" method name Summary: This method was incorrectly renamed by D21628. See . Test Plan: Looked at it, will deploy etc. Subscribers: yelirekim, PHID-OPKG-gm6ozazyms6q6i22gyam Differential Revision: https://secure.phabricator.com/D21644 --- .../DrydockAlmanacServiceHostBlueprintImplementation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/drydock/blueprint/DrydockAlmanacServiceHostBlueprintImplementation.php b/src/applications/drydock/blueprint/DrydockAlmanacServiceHostBlueprintImplementation.php index 6c8e75696f..290fae8c63 100644 --- a/src/applications/drydock/blueprint/DrydockAlmanacServiceHostBlueprintImplementation.php +++ b/src/applications/drydock/blueprint/DrydockAlmanacServiceHostBlueprintImplementation.php @@ -242,7 +242,7 @@ final class DrydockAlmanacServiceHostBlueprintImplementation return $this->services; } - private function getActive(array $services) { + private function getActiveBindings(array $services) { assert_instances_of($services, 'AlmanacService'); $bindings = array_mergev(mpull($services, 'getActiveBindings')); return mpull($bindings, null, 'getPHID');