From 008ef6d1c9e1f18d1a70a6e33b34e2dfa83340d4 Mon Sep 17 00:00:00 2001 From: Klimov Paul Date: Sun, 24 Jan 2016 16:48:06 +0200 Subject: [PATCH] Code style fix --- ToggleButtonGroup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ToggleButtonGroup.php b/ToggleButtonGroup.php index dcd280c..1f7366c 100644 --- a/ToggleButtonGroup.php +++ b/ToggleButtonGroup.php @@ -71,7 +71,7 @@ class ToggleButtonGroup extends InputWidget $this->options['item'] = [$this, 'renderItem']; } switch ($this->type) { - case 'checkbox' : + case 'checkbox': return Html::activeCheckboxList($this->model, $this->attribute, $this->items, $this->options); case 'radio': return Html::activeRadioList($this->model, $this->attribute, $this->items, $this->options);