Neos\Flow\Security\Authorization\Privilege\Entity\Doctrine\EntityPrivilege::matchesSubject PHP Méthode

matchesSubject() public méthode

Returns TRUE, if this privilege covers the given subject. As entity privileges are evaluated and enforced "within the database system" in SQL and not by the voting process, this method will always return FALSE.
public matchesSubject ( Neos\Flow\Security\Authorization\Privilege\PrivilegeSubjectInterface $subject ) : boolean
$subject Neos\Flow\Security\Authorization\Privilege\PrivilegeSubjectInterface
Résultat boolean
    public function matchesSubject(PrivilegeSubjectInterface $subject)
    {
        return false;
    }