Passed
Push — master ( 4274d3...3e7255 )
by Malte
03:14
created
src/IMAP/Client.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -338,13 +338,13 @@
 block discarded – undo
338 338
         return imap_renamemailbox($this->connection, $this->getAddress() . imap_utf7_encode($old_name), $this->getAddress() . imap_utf7_encode($new_name));
339 339
     }
340 340
     
341
-     /**
342
-     * Delete Folder
343
-     * @param string $name
344
-     *
345
-     * @return bool
346
-     * @throws ConnectionFailedException
347
-     */
341
+        /**
342
+         * Delete Folder
343
+         * @param string $name
344
+         *
345
+         * @return bool
346
+         * @throws ConnectionFailedException
347
+         */
348 348
     public function deleteFolder($name) {
349 349
         $this->checkConnection();
350 350
         return imap_deletemailbox($this->connection, $this->getAddress() . imap_utf7_encode($name));
Please login to merge, or discard this patch.