mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-12-25 00:00:41 +08:00
Container.php: adjust casing of enable_nvidia_gpu to enableNvidiaGpu
Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
parent
109b9dc019
commit
f3e47e62f3
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ readonly class Container {
|
|||
private array $secrets,
|
||||
/** @var string[] */
|
||||
private array $devices,
|
||||
private bool $enable_nvidia_gpu,
|
||||
private bool $enableNvidiaGpu,
|
||||
/** @var string[] */
|
||||
private array $capAdd,
|
||||
private int $shmSize,
|
||||
|
@ -94,7 +94,7 @@ readonly class Container {
|
|||
}
|
||||
|
||||
public function isNvidiaGpuEnabled() : bool {
|
||||
return $this->enable_nvidia_gpu;
|
||||
return $this->enableNvidiaGpu;
|
||||
}
|
||||
|
||||
public function GetCapAdds() : array {
|
||||
|
|
Loading…
Reference in a new issue