Completed
Push — master ( 9c5452...a7b114 )
by Aitor Riba
02:38 queued 01:10
created
src/Builder/MymemoryTrans.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
         // Check if host is online.
15 15
         if ($this->checkHost($host)) {
16 16
 
17
-             // Host online
17
+                // Host online
18 18
             $urlString = urlencode($this->string);
19 19
             $urldata = file_get_contents("http://$host/get?q=$urlString&langpair=$this->from|$this->to");
20 20
             $data = json_decode($urldata, true);
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -19,12 +19,12 @@  discard block
 block discarded – undo
19 19
             $urldata = file_get_contents("http://$host/get?q=$urlString&langpair=$this->from|$this->to");
20 20
             $data = json_decode($urldata, true);
21 21
 
22
-            if ($data['responseStatus'] != 200) {
22
+            if ($data[ 'responseStatus' ] != 200) {
23 23
                 if ($this->debug == true) {
24
-                    if ($data['responseStatus'] == 403) {
25
-                        $details = ($data['responseDetails']);
24
+                    if ($data[ 'responseStatus' ] == 403) {
25
+                        $details = ($data[ 'responseDetails' ]);
26 26
                     } else {
27
-                        $details = $data['responseDetails'];
27
+                        $details = $data[ 'responseDetails' ];
28 28
                     }
29 29
                     $this->translation = "<font style='color:red;'>Error ".$data->responseStatus.': '.$details.'</font>';
30 30
                 }
@@ -33,16 +33,16 @@  discard block
 block discarded – undo
33 33
             }
34 34
 
35 35
             // Checking if any translation provides from 24aitor to use it
36
-            foreach ($data['matches']  as $match) {
37
-                if ($match['last-updated-by'] == '24aitor') {
38
-                    $this->translation = $match['translation'];
36
+            foreach ($data[ 'matches' ]  as $match) {
37
+                if ($match[ 'last-updated-by' ] == '24aitor') {
38
+                    $this->translation = $match[ 'translation' ];
39 39
                     $this->checkSave();
40 40
 
41 41
                     return;
42 42
                 }
43 43
             }
44 44
 
45
-            $this->translation = $data['responseData']['translatedText'];
45
+            $this->translation = $data[ 'responseData' ][ 'translatedText' ];
46 46
             $this->checkSave();
47 47
 
48 48
             return;
Please login to merge, or discard this patch.
src/Builder/GoogleTrans.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
         // Check if host is online.
15 15
         if ($this->checkHost($host)) {
16 16
 
17
-             // Host online
17
+                // Host online
18 18
             $urlString = urlencode($this->string);
19 19
             $urldata = file_get_contents("https://translate.googleapis.com/translate_a/single?client=gtx&sl=$this->from&tl=$this->to&dt=t&q=$urlString");
20 20
             $tr = $urldata;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
             $tr = substr($tr, 3, -6);
22 22
             $tr = $tr.'["';
23 23
             $tr = explode('],[', $tr);
24
-            $trans = [];
24
+            $trans = [ ];
25 25
             foreach ($tr as $tran) {
26 26
                 $transl = explode('","', $tran);
27
-                array_push($trans, str_replace('\"', '"', ucfirst(substr($transl[0], 1))));
27
+                array_push($trans, str_replace('\"', '"', ucfirst(substr($transl[ 0 ], 1))));
28 28
             }
29 29
             $this->translation = trim(implode(' ', $trans));
30 30
             $this->checkSave();
Please login to merge, or discard this patch.