Switched from integer to int

This commit is contained in:
Graham Campbell
2015-10-20 20:33:23 +01:00
parent 59967bca9a
commit d46007c536
14 changed files with 27 additions and 27 deletions

View File

@@ -70,7 +70,7 @@ class Component extends Model implements HasPresenter
*/
public $rules = [
'name' => 'required|string',
'status' => 'integer|required',
'status' => 'int|required',
'link' => 'url',
];