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:
parent
136091ecd0
commit
1b5d2f83c3
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue