Completed
Push — master ( d7d452...c13694 )
by Loban
02:00
created
src/models/Lang.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             [['id'], 'trim'],
40 40
             [['id'], 'required'],
41 41
             [['id'], 'string', 'min' => 2, 'max' => 2],
42
-            [['id'], 'match', 'pattern' => '/^' . self::PATTERN . '$/'],
42
+            [['id'], 'match', 'pattern' => '/^'.self::PATTERN.'$/'],
43 43
             [['id'], 'unique'],
44 44
 
45 45
             [['name'], 'trim'],
Please login to merge, or discard this patch.
src/grid/ActionColumn.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     {
50 50
         foreach ($this->languages as $lang_id => $lang) {
51 51
             $name = "update-$lang_id";
52
-            $this->template .= ' {' . $name . '}';
52
+            $this->template .= ' {'.$name.'}';
53 53
             if (!isset($this->buttons[$name])) {
54 54
                 $this->buttons[$name] = function() use ($lang, $lang_id) {
55 55
                     /** @var \lav45\translate\TranslatedTrait $model */
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
                     $params = is_array($key) ? $key : ['id' => (string) $key];
60 60
                     $params[$this->languageAttribute] = $lang_id;
61
-                    $params[0] = $this->controller ? $this->controller . '/update' : 'update';
61
+                    $params[0] = $this->controller ? $this->controller.'/update' : 'update';
62 62
 
63 63
                     $url = Url::toRoute($params);
64 64
 
@@ -72,9 +72,9 @@  discard block
 block discarded – undo
72 72
 
73 73
                     if ($this->ajax) {
74 74
                         $options['data-href'] = $url;
75
-                        return Html::button('<span class="glyphicon glyphicon-pencil"></span> ' . $lang, $options);
75
+                        return Html::button('<span class="glyphicon glyphicon-pencil"></span> '.$lang, $options);
76 76
                     } else {
77
-                        return Html::a('<span class="glyphicon glyphicon-pencil"></span> ' . $lang, $url, $options);
77
+                        return Html::a('<span class="glyphicon glyphicon-pencil"></span> '.$lang, $url, $options);
78 78
                     }
79 79
                 };
80 80
             }
Please login to merge, or discard this patch.
src/TranslatedBehavior.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      */
164 164
     public function __get($name)
165 165
     {
166
-        $getter = 'get' . $name;
166
+        $getter = 'get'.$name;
167 167
         if (method_exists($this, $getter)) {
168 168
             return $this->$getter();
169 169
         }
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      */
177 177
     public function __set($name, $value)
178 178
     {
179
-        $setter = 'set' . $name;
179
+        $setter = 'set'.$name;
180 180
         if (method_exists($this, $setter)) {
181 181
             $this->$setter($value);
182 182
         } else {
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
         $table = $class::tableName();
250 250
 
251 251
         return $this->getRelation()
252
-            ->onCondition([$table . '.' . $this->languageAttribute => $langList])
252
+            ->onCondition([$table.'.'.$this->languageAttribute => $langList])
253 253
             ->indexBy($this->languageAttribute);
254 254
     }
255 255
 }
Please login to merge, or discard this patch.