Skip to content

Instantly share code, notes, and snippets.

@Mulkave
Created June 8, 2016 20:14
Show Gist options
  • Save Mulkave/347563ee4599d679184e583cdbca7c82 to your computer and use it in GitHub Desktop.
Save Mulkave/347563ee4599d679184e583cdbca7c82 to your computer and use it in GitHub Desktop.
<?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