Passed
Push — master ( 15c433...d0977b )
by Christian
01:47
created
src/FirstClass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function encodeString($string)
28 28
     {
29
-        $string= strtolower($string);
29
+        $string=strtolower($string);
30 30
         $src="abcdefghijklmnopqrstuvwxyz0123456789 ";
31 31
         $dst="jklmnopqrstuvwxyz0123456789abcdefghi ";
32 32
         for ($i=0; $i<strlen($string); $i++) {
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function decodeString($string)
50 50
     {
51
-        $string= strtolower($string);
51
+        $string=strtolower($string);
52 52
         $src="jklmnopqrstuvwxyz0123456789abcdefghi ";
53 53
         $dst="abcdefghijklmnopqrstuvwxyz0123456789 ";
54 54
         for ($i=0; $i<strlen($string); $i++) {
Please login to merge, or discard this patch.