Completed
Push — master ( b15437...c8ccf3 )
by Wanderson
02:00
created
app/model/Win/File/Directory.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,8 +64,10 @@
 block discarded – undo
64 64
 		if (is_dir($path)):
65 65
 			$this->removeAllFiles();
66 66
 			return rmdir($path);
67
-		else:
67
+		else {
68
+			:
68 69
 			return false;
70
+		}
69 71
 		endif;
70 72
 	}
71 73
 
Please login to merge, or discard this patch.
lib/functions/strings.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,8 +160,10 @@
 block discarded – undo
160 160
 function booleanToString($boolean) {
161 161
 	if ($boolean == true):
162 162
 		return 'Sim';
163
-	else:
163
+	else {
164
+		:
164 165
 		return 'Não';
166
+	}
165 167
 	endif;
166 168
 }
167 169
 
Please login to merge, or discard this patch.