Neos\Flow\Security\Authorization\Privilege\Entity\Doctrine\EntityPrivilege::matchesSubject PHP Method

matchesSubject() public method

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
return boolean
    public function matchesSubject(PrivilegeSubjectInterface $subject)
    {
        return false;
    }