From 25ef7c462a07f032b6665c644d0ba576ea34d1f8 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sat, 7 Mar 2026 16:35:55 +0000 Subject: [PATCH] Apply fixes from StyleCI --- includes/html/application/proxmox.inc.php | 1 - includes/polling/applications/proxmox.inc.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/includes/html/application/proxmox.inc.php b/includes/html/application/proxmox.inc.php index 986b5ae3e936..f475b8845861 100644 --- a/includes/html/application/proxmox.inc.php +++ b/includes/html/application/proxmox.inc.php @@ -16,7 +16,6 @@ * See https://www.gnu.org/licenses/gpl.txt for the full license */ - /** * Fetch all info about a Proxmox VM * diff --git a/includes/polling/applications/proxmox.inc.php b/includes/polling/applications/proxmox.inc.php index 17ec9b805c62..2ffb0edc820f 100644 --- a/includes/polling/applications/proxmox.inc.php +++ b/includes/polling/applications/proxmox.inc.php @@ -32,7 +32,7 @@ } } catch (JsonAppParsingFailedException $e) { $status = 'OK'; - $pmxlines = explode("\n", Str::chopStart($e->getOutput(), "<<>>")); + $pmxlines = explode("\n", Str::chopStart($e->getOutput(), '<<>>')); $pmxcluster = array_shift($pmxlines); foreach ($pmxlines as $pmxline) { $vm_ports[] = explode('/', $pmxline, 5);