
* Added user registration process * Added user password reset process * Added user email verification proccess * update token id to return custom claims * update access token instrospection to return user custom claims * Migrated to Doctrine ORM ( from eloquent) * Added User CRUD * Added User Groups CRUD * Refactoring * Bug Fixing * added user registration oauth2 endpoint POST /api/v1/user-registration-requests payload * first_name ( required ) * last_name ( required) * email ( required ) * country ( optional ) scope user-registration ( private scope) Change-Id: I36e8cd4473ccad734565051442e2c6033b204f27
17 lines
456 B
PHP
17 lines
456 B
PHP
<?php namespace Utils\Services;
|
|
|
|
/**
|
|
* Interface ISecurityPolicyCounterMeasure
|
|
* implements Checkpoint Pattern
|
|
* depicted on Architectural Patterns for Enabling Application Security - Yoder/Barcalow
|
|
* Defines contract for a custom Security Policy Counter measure
|
|
* @package Utils\Services
|
|
*/
|
|
interface ISecurityPolicyCounterMeasure
|
|
{
|
|
/**
|
|
* @param array $params
|
|
* @return $this
|
|
*/
|
|
public function trigger(array $params = []);
|
|
}
|