Created
June 8, 2016 20:14
-
-
Save Mulkave/347563ee4599d679184e583cdbca7c82 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Directory\Domains\Citizen\Validators; | |
use Directory\Foundation\Validator; | |
class CitizenCreationValidator extends Validator | |
{ | |
protected $rules = [ | |
'name' => 'required', | |
'email' => 'required', | |
'ssn' => 'required', | |
'address' => 'required', | |
'occupation' => 'required', | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment