opxcore/authorization-interface

OpxCore authorization interface.

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/opxcore/authorization-interface

1.0.2 2020-07-02 08:23 UTC

This package is auto-updated.

Last update: 2025-09-29 03:05:33 UTC


README

AuthorizationInterface is abstraction for authorization checks. Checker must return AuthorizationResponse.

$actions=['update'];

$response = AuthorizationInterface::check([...$permissions], $actions);

if($response->can('update') {
    // Do some update actions
}