Eye4web/Eye4webZf2Abac

View on GitHub
src/Eye4web/Zf2Abac/Service/AuthorizationServiceInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Eye4web\Zf2Abac\Service;

interface AuthorizationServiceInterface
{
    /**
     * @param string $assertion
     * @param string $value
     * @param array $attributes
     * @return boolean
     */
    public function hasPermission($assertion, $value, array $attributes);
}