Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

Commit

Permalink
Remove not-existing validation rule usage (fix #12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Omranic committed Feb 18, 2018
1 parent 7a27993 commit 2986380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/Address.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class Address extends Model
'last_name' => 'nullable|string|max:150',
'name_suffix' => 'nullable|string|max:150',
'organization' => 'nullable|string|max:150',
'country_code' => 'nullable|alpha|size:2|country',
'country_code' => 'nullable|alpha|size:2',
'street' => 'nullable|string|max:150',
'state' => 'nullable|string|max:150',
'city' => 'nullable|string|max:150',
Expand Down

0 comments on commit 2986380

Please sign in to comment.