Completed
Push — master ( 6ce4c2...731c36 )
by Aitor Riba
01:46
created
src/Builder/MymemoryTrans.php 1 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
                  }
@@ -32,17 +32,17 @@  discard block
 block discarded – undo
32 32
                  return;
33 33
              }
34 34
 
35
-             foreach ($data['matches']  as $match) {
36
-                 if ($match['last-updated-by'] == '24aitor') {
35
+             foreach ($data[ 'matches' ]  as $match) {
36
+                 if ($match[ 'last-updated-by' ] == '24aitor') {
37 37
 
38
-                     $this->translation = $match['translation'];
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.