From c5b6007649614ecd2278b8eff2ad0368f650e705 Mon Sep 17 00:00:00 2001 From: Alexander Mohorev Date: Sat, 25 Oct 2014 15:30:03 +0300 Subject: [PATCH] PHP type casting --- ActiveField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ActiveField.php b/ActiveField.php index f24d775..9bf7ec3 100644 --- a/ActiveField.php +++ b/ActiveField.php @@ -309,7 +309,7 @@ class ActiveField extends \yii\widgets\ActiveField */ public function inline($value = true) { - $this->inline = (bool)$value; + $this->inline = (bool) $value; return $this; }