Cancelled
Branch main (caeba9)
by Sammy
12:38 queued 10:31
created
Models/Lingvo.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     public function __toString()
30 30
     {
31
-        return $this->iso_name() . ' (' . $this->get(self::ISO_3) . ')';
31
+        return $this->iso_name().' ('.$this->get(self::ISO_3).')';
32 32
     }
33 33
 
34 34
     public function traceable(): bool
@@ -74,11 +74,11 @@  discard block
 block discarded – undo
74 74
         }
75 75
 
76 76
         if (isset($filter['types'])) {
77
-            $wc = sprintf("AND " . self::ISO_TYPE . " IN ('%s') ", implode('\', \'', array_keys(self::ISO_TYPES)));
77
+            $wc = sprintf("AND ".self::ISO_TYPE." IN ('%s') ", implode('\', \'', array_keys(self::ISO_TYPES)));
78 78
             $Query->where($wc);
79 79
         }
80 80
         if (isset($filter['scopes'])) {
81
-            $wc = sprintf("AND " . self::ISO_SCOPE . " IN ('%s') ", implode('\', \'', array_keys(self::ISO_SCOPES)));
81
+            $wc = sprintf("AND ".self::ISO_SCOPE." IN ('%s') ", implode('\', \'', array_keys(self::ISO_SCOPES)));
82 82
             $Query->where($wc);
83 83
         }
84 84
 
Please login to merge, or discard this patch.