Completed
Push — master ( edd7ee...743d38 )
by Loban
01:21
created
src/grid/ActionColumn.php 1 patch
Spacing   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@  discard block
 block discarded – undo
45 45
     {
46 46
         foreach ($this->languages as $lang_id => $lang) {
47 47
             $name = "update-{$lang_id}";
48
-            $this->template .= ' {' . $name . '}';
48
+            $this->template .= ' {'.$name.'}';
49 49
             if (!isset($this->buttons[$name])) {
50 50
                 $this->buttons[$name] = function($_url, $model, $key) use ($lang, $lang_id) {
51 51
                     /** @var \lav45\translate\TranslatedTrait $model */
52 52
                     $params = is_array($key) ? $key : ['id' => (string) $key];
53 53
                     $params[$this->languageAttribute] = $lang_id;
54
-                    $params[0] = $this->controller ? $this->controller . '/update' : 'update';
54
+                    $params[0] = $this->controller ? $this->controller.'/update' : 'update';
55 55
 
56 56
                     $url = Url::toRoute($params);
57 57
 
@@ -63,8 +63,7 @@  discard block
 block discarded – undo
63 63
                     ], $this->buttonOptions);
64 64
 
65 65
                     $color = $model->hasTranslate($lang_id) ?
66
-                        $this->successTranslateButtonClass :
67
-                        $this->notTranslateButtonClass;
66
+                        $this->successTranslateButtonClass : $this->notTranslateButtonClass;
68 67
                     Html::addCssClass($options, $color);
69 68
 
70 69
                     $text = str_replace('{lang}', $lang, $this->buttonTextTemplate);
Please login to merge, or discard this patch.