Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Created May 18, 2019 10:32
Show Gist options
  • Save ismail1432/7a085fe22893b9d99fb0f6a219a45fb0 to your computer and use it in GitHub Desktop.
Save ismail1432/7a085fe22893b9d99fb0f6a219a45fb0 to your computer and use it in GitHub Desktop.
<?php
namespace App\Validator;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
*/
class Role extends Constraint
{
public $message = 'You are not allowed to do this stuff !';
// will contains the allowed role
public $role;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment