Neos\Flow\Security\Authorization\Privilege\Entity\Doctrine\EntityPrivilege::matchesSubject PHP Метод

matchesSubject() публичный Метод

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
Результат boolean
    public function matchesSubject(PrivilegeSubjectInterface $subject)
    {
        return false;
    }