From 4c5d26fe9a2c74a67acfe3020522a6ad8e01fe20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannis=20Mo=C3=9Fhammer?= Date: Tue, 20 Aug 2013 17:06:44 +0200 Subject: [PATCH] Fix Codestyle/PHPDoc, fix configPath being Overwritten Also removed possibility to disable debugging as there's no use case for this refs #4525 refs #4598 --- library/Icinga/Config/IniEditor.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/library/Icinga/Config/IniEditor.php b/library/Icinga/Config/IniEditor.php index 085b1a425..c24186ca0 100644 --- a/library/Icinga/Config/IniEditor.php +++ b/library/Icinga/Config/IniEditor.php @@ -117,11 +117,10 @@ class IniEditor /** * Get the line of an array element * - * @param array $key The key of the property. - * @param $value The value - * @param $section The section to use + * @param array $key The key of the property. + * @param mixed $section The section to use * - * @return The line of the array element. + * @return int The line of the array element. */ private function getArrayElement(array $key, $section = null) { @@ -270,14 +269,14 @@ class IniEditor /** * Update the line $lineNr * - * @param $lineNr The line number of the target line - * @param $toInsert The new line content + * @param int $lineNr The line number of the target line + * @param string $toInsert The new line content */ private function updateLine($lineNr, $content) { $comment = $this->getComment($this->text[$lineNr]); if (strlen($comment) > 0) { - $comment = " ; " . trim($comment); + $comment = ' ; ' . trim($comment); } $this->text[$lineNr] = str_pad($content, 43) . $comment; }