From 1b5d2f83c3aa03dada5cbed4a18d341733348425 Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Tue, 02 Jul 2024 19:07:18 +0000 Subject: [PATCH] Fix property name typo in DrydockResource Summary: `$capbilities` has a typo. Test Plan: Slowly spell the word "capabilities"; compare with the top of the file. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25714 --- src/applications/drydock/storage/DrydockResource.php | 2 +- 1 file(s) changed, 1 insertion(s)(+), 1 deletion(s)(-) diff --git a/src/applications/drydock/storage/DrydockResource.php b/src/applications/drydock/storage/DrydockResource.php --- a/src/applications/drydock/storage/DrydockResource.php +++ b/src/applications/drydock/storage/DrydockResource.php @@ -69,7 +69,7 @@ } public function getCapability($key, $default = null) { - return idx($this->capbilities, $key, $default); + return idx($this->capabilities, $key, $default); } public function getInterface(DrydockLease $lease, $type) { -- tangled.sh