Test Failed
Push — master ( db6a84...9ff342 )
by Marcio
04:27 queued 12s
created
src/Ballybran/Helpers/Utility/Ucfirst.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -93,10 +93,10 @@
 block discarded – undo
93 93
     }
94 94
 
95 95
     /**
96
-    * example removeAccentsIstring( "Õ") output "O"
97
-    * @param string $string
98
-    * @return string
99
-	*/
96
+     * example removeAccentsIstring( "Õ") output "O"
97
+     * @param string $string
98
+     * @return string
99
+     */
100 100
     public static function removeAccentsIstring($string) : string
101 101
     {
102 102
         return preg_replace(array("/(á|à|ã|â|ä)/", "/(Á|À|Ã|Â|Ä)/", "/(é|è|ê|ë)/", "/(É|È|Ê|Ë)/", "/(í|ì|î|ï)/", "/(Í|Ì|Î|Ï)/", "/(ó|ò|õ|ô|ö)/", "/(Ó|Ò|Õ|Ô|Ö)/", "/(ú|ù|û|ü)/", "/(Ú|Ù|Û|Ü)/", "/(ñ)/", "/(Ñ)/", "/(ç)/", "/(Ç)/"), explode(" ", "a A e E i I o O u U n N c C"), $string);
Please login to merge, or discard this patch.