Passed
Push — master ( a61a57...835875 )
by Malte
03:03
created
src/IMAP/Client.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -346,13 +346,13 @@
 block discarded – undo
346 346
         return imap_renamemailbox($this->getConnection(), $this->getAddress() . imap_utf7_encode($old_name), $this->getAddress() . imap_utf7_encode($new_name));
347 347
     }
348 348
     
349
-     /**
350
-     * Delete Folder
351
-     * @param string $name
352
-     *
353
-     * @return bool
354
-     * @throws ConnectionFailedException
355
-     */
349
+        /**
350
+         * Delete Folder
351
+         * @param string $name
352
+         *
353
+         * @return bool
354
+         * @throws ConnectionFailedException
355
+         */
356 356
     public function deleteFolder($name) {
357 357
         $this->checkConnection();
358 358
         return imap_deletemailbox($this->getConnection(), $this->getAddress() . imap_utf7_encode($name));
Please login to merge, or discard this patch.