From 4b147e2497a6db454fb78053c82ffb5745959e2c Mon Sep 17 00:00:00 2001 From: aljawaid <10233708+aljawaid@users.noreply.github.com> Date: Mon, 17 Jul 2023 08:54:13 +0100 Subject: [PATCH] Fix comments --- Helper/PluginCleaningHelper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Helper/PluginCleaningHelper.php b/Helper/PluginCleaningHelper.php index bf3702a..d94c33a 100644 --- a/Helper/PluginCleaningHelper.php +++ b/Helper/PluginCleaningHelper.php @@ -38,11 +38,11 @@ public function getDeletablePlugins() */ public function getFolderName() { - // Pull variable from modal + // Pull variable from the modal $plugin_name = $this->request->getStringParam('plugin_name'); $folder_name = []; - // Match variable to json content if the plugin name matches + // Match the variable to the JSON content if the plugin name matches foreach ($this->helper->pluginCleaningHelper->getDeletablePlugins() as $plugin) { if ($plugin['plugin_name'] === $plugin_name && isset($plugin['plugin_folder_name'])) { $folder_name = $plugin['plugin_folder_name'];