From cfd8f0e7d272bdfd8ffe83d07f1cb0ec91f76770 Mon Sep 17 00:00:00 2001 From: Sergey Date: Fri, 6 Nov 2015 10:41:28 +0900 Subject: [PATCH] Code style fixes --- src/PhpImap/Mailbox.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/PhpImap/Mailbox.php b/src/PhpImap/Mailbox.php index 8e8d91f7..69c60696 100644 --- a/src/PhpImap/Mailbox.php +++ b/src/PhpImap/Mailbox.php @@ -79,11 +79,10 @@ protected function disconnect() { /** * Sets 'expunge on disconnect' parameter - * @param bool $value + * @param bool $isEnabled */ - public function setExpungeOnDisconnect($value) - { - $this->expungeOnDisconnect = $value; + public function setExpungeOnDisconnect($isEnabled) { + $this->expungeOnDisconnect = $isEnabled; } /**