Switched boolean for bool

This commit is contained in:
Graham Campbell
2015-10-20 20:34:59 +01:00
parent d46007c536
commit 7507a362bd
8 changed files with 11 additions and 11 deletions

View File

@@ -73,7 +73,7 @@ class Metric extends Model implements HasPresenter
public $rules = [
'name' => 'required',
'suffix' => 'required',
'display_chart' => 'boolean',
'display_chart' => 'bool',
'default_value' => 'numeric',
'places' => 'numeric|min:0|max:4',
];