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

@@ -63,10 +63,10 @@ final class AddComponentCommand
public $rules = [
'name' => 'required|string',
'description' => 'string',
'status' => 'required|integer',
'status' => 'required|int',
'link' => 'url',
'order' => 'integer',
'group_id' => 'integer',
'order' => 'int',
'group_id' => 'int',
];
/**