-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
142 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org) | ||
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | ||
* | ||
* Licensed under The MIT License | ||
* For full copyright and license information, please see the LICENSE.txt | ||
* Redistributions of files must retain the above copyright notice. | ||
* | ||
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) | ||
* @link https://cakephp.org CakePHP(tm) Project | ||
* @since 2.4.0 | ||
* @license https://opensource.org/licenses/mit-license.php MIT License | ||
*/ | ||
namespace Authorization\Policy; | ||
|
||
use Authorization\IdentityInterface; | ||
|
||
/** | ||
* This interface should be implemented if a policy class needs to perform a | ||
* pre-authorization check before the scope is applied to the resource. | ||
*/ | ||
interface BeforeScopeInterface | ||
{ | ||
/** | ||
* Defines a pre-scope check. | ||
* | ||
* If a non-null value is returned, the scope application will be skipped and the un-scoped resource | ||
* will be returned. In case of `null`, the scope will be applied. | ||
* | ||
* @param \Authorization\IdentityInterface|null $identity Identity object. | ||
* @param mixed $resource The resource being operated on. | ||
* @param string $action The action/operation being performed. | ||
* @return mixed | ||
*/ | ||
public function beforeScope(?IdentityInterface $identity, $resource, string $action); | ||
Check failure on line 38 in src/Policy/BeforeScopeInterface.php GitHub Actions / cs-stan / Coding Standard & Static Analysis
Check failure on line 38 in src/Policy/BeforeScopeInterface.php GitHub Actions / cs-stan / Coding Standard & Static Analysis
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters