1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-09 16:32:39 +01:00

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
This commit is contained in:
Andre Klapper 2024-07-02 21:07:18 +02:00
parent 136091ecd0
commit 1b5d2f83c3

View file

@ -69,7 +69,7 @@ final class DrydockResource extends DrydockDAO
}
public function getCapability($key, $default = null) {
return idx($this->capbilities, $key, $default);
return idx($this->capabilities, $key, $default);
}
public function getInterface(DrydockLease $lease, $type) {