diff --git a/src/ZfcRbac/Assertion/AssertionInterface.php b/src/ZfcRbac/Assertion/AssertionInterface.php index 88095c65..57659d83 100644 --- a/src/ZfcRbac/Assertion/AssertionInterface.php +++ b/src/ZfcRbac/Assertion/AssertionInterface.php @@ -26,7 +26,7 @@ * @author Michaël Gallego * @author Aeneas Rekkas * @author Daniel Gimenes - * @licence MIT + * @license MIT */ interface AssertionInterface { diff --git a/src/ZfcRbac/Assertion/AssertionPluginManager.php b/src/ZfcRbac/Assertion/AssertionPluginManager.php index 0813db3b..b5b156e3 100644 --- a/src/ZfcRbac/Assertion/AssertionPluginManager.php +++ b/src/ZfcRbac/Assertion/AssertionPluginManager.php @@ -25,7 +25,7 @@ * Plugin manager to create assertions * * @author Aeneas Rekkas - * @licence MIT + * @license MIT * * @method AssertionInterface get($name) */ diff --git a/src/ZfcRbac/Collector/RbacCollector.php b/src/ZfcRbac/Collector/RbacCollector.php index ba8f7289..918e82e5 100644 --- a/src/ZfcRbac/Collector/RbacCollector.php +++ b/src/ZfcRbac/Collector/RbacCollector.php @@ -35,7 +35,7 @@ * RbacCollector * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RbacCollector implements CollectorInterface, Serializable { diff --git a/src/ZfcRbac/Exception/ExceptionInterface.php b/src/ZfcRbac/Exception/ExceptionInterface.php index a2c54741..fc923612 100644 --- a/src/ZfcRbac/Exception/ExceptionInterface.php +++ b/src/ZfcRbac/Exception/ExceptionInterface.php @@ -22,7 +22,7 @@ * Base exception interface for ZfcRbac * * @author Michaël Gallego - * @licence MIT + * @license MIT */ interface ExceptionInterface { diff --git a/src/ZfcRbac/Exception/InvalidArgumentException.php b/src/ZfcRbac/Exception/InvalidArgumentException.php index e58af1a3..a9247952 100644 --- a/src/ZfcRbac/Exception/InvalidArgumentException.php +++ b/src/ZfcRbac/Exception/InvalidArgumentException.php @@ -24,7 +24,7 @@ * InvalidArgumentException * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class InvalidArgumentException extends BaseInvalidArgumentException implements ExceptionInterface { diff --git a/src/ZfcRbac/Exception/RoleNotFoundException.php b/src/ZfcRbac/Exception/RoleNotFoundException.php index 1bfbdacb..6dbdbaa8 100644 --- a/src/ZfcRbac/Exception/RoleNotFoundException.php +++ b/src/ZfcRbac/Exception/RoleNotFoundException.php @@ -24,7 +24,7 @@ * Exception that is thrown when a role cannot be found (for instance from a provider) * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RoleNotFoundException extends BaseRuntimeException implements ExceptionInterface { diff --git a/src/ZfcRbac/Exception/RuntimeException.php b/src/ZfcRbac/Exception/RuntimeException.php index 9125ab56..78d73086 100644 --- a/src/ZfcRbac/Exception/RuntimeException.php +++ b/src/ZfcRbac/Exception/RuntimeException.php @@ -24,7 +24,7 @@ * RuntimeException * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RuntimeException extends BaseRuntimeException implements ExceptionInterface { diff --git a/src/ZfcRbac/Exception/UnauthorizedException.php b/src/ZfcRbac/Exception/UnauthorizedException.php index eeb2490a..6d2e4462 100644 --- a/src/ZfcRbac/Exception/UnauthorizedException.php +++ b/src/ZfcRbac/Exception/UnauthorizedException.php @@ -24,7 +24,7 @@ * Unauthorized exception * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class UnauthorizedException extends BaseRuntimeException implements UnauthorizedExceptionInterface { diff --git a/src/ZfcRbac/Exception/UnauthorizedExceptionInterface.php b/src/ZfcRbac/Exception/UnauthorizedExceptionInterface.php index ad7d32b5..42fe5a27 100644 --- a/src/ZfcRbac/Exception/UnauthorizedExceptionInterface.php +++ b/src/ZfcRbac/Exception/UnauthorizedExceptionInterface.php @@ -22,7 +22,7 @@ * Interface for an unauthorized exception * * @author Michaël Gallego - * @licence MIT + * @license MIT */ interface UnauthorizedExceptionInterface extends ExceptionInterface { diff --git a/src/ZfcRbac/Factory/AssertionPluginManagerFactory.php b/src/ZfcRbac/Factory/AssertionPluginManagerFactory.php index 6ff9e63d..301eb6f9 100644 --- a/src/ZfcRbac/Factory/AssertionPluginManagerFactory.php +++ b/src/ZfcRbac/Factory/AssertionPluginManagerFactory.php @@ -27,7 +27,7 @@ * Factory to create a assertion plugin manager * * @author Aeneas Rekkas - * @licence MIT + * @license MIT */ class AssertionPluginManagerFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/AuthenticationIdentityProviderFactory.php b/src/ZfcRbac/Factory/AuthenticationIdentityProviderFactory.php index e0ec541e..04cbaec9 100644 --- a/src/ZfcRbac/Factory/AuthenticationIdentityProviderFactory.php +++ b/src/ZfcRbac/Factory/AuthenticationIdentityProviderFactory.php @@ -26,7 +26,7 @@ * Factory to create the authentication identity provider * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class AuthenticationIdentityProviderFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/AuthorizationServiceFactory.php b/src/ZfcRbac/Factory/AuthorizationServiceFactory.php index 49cd88d5..2f3300f2 100644 --- a/src/ZfcRbac/Factory/AuthorizationServiceFactory.php +++ b/src/ZfcRbac/Factory/AuthorizationServiceFactory.php @@ -26,7 +26,7 @@ * Factory to create the authorization service * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class AuthorizationServiceFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/ControllerGuardFactory.php b/src/ZfcRbac/Factory/ControllerGuardFactory.php index 1bb88428..1fbfa4a5 100644 --- a/src/ZfcRbac/Factory/ControllerGuardFactory.php +++ b/src/ZfcRbac/Factory/ControllerGuardFactory.php @@ -27,7 +27,7 @@ * Create a controller guard * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class ControllerGuardFactory implements FactoryInterface, MutableCreationOptionsInterface { diff --git a/src/ZfcRbac/Factory/ControllerPermissionsGuardFactory.php b/src/ZfcRbac/Factory/ControllerPermissionsGuardFactory.php index 0ca7acfe..6e80fd27 100644 --- a/src/ZfcRbac/Factory/ControllerPermissionsGuardFactory.php +++ b/src/ZfcRbac/Factory/ControllerPermissionsGuardFactory.php @@ -28,7 +28,7 @@ * Create a controller guard for checking permissions * * @author JM Lerouxw - * @licence MIT + * @license MIT */ class ControllerPermissionsGuardFactory implements FactoryInterface, MutableCreationOptionsInterface { diff --git a/src/ZfcRbac/Factory/GuardPluginManagerFactory.php b/src/ZfcRbac/Factory/GuardPluginManagerFactory.php index 4eab4073..4b067b6f 100644 --- a/src/ZfcRbac/Factory/GuardPluginManagerFactory.php +++ b/src/ZfcRbac/Factory/GuardPluginManagerFactory.php @@ -27,7 +27,7 @@ * Factory to create a guard plugin manager * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class GuardPluginManagerFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/GuardsFactory.php b/src/ZfcRbac/Factory/GuardsFactory.php index 4ff51200..29bb7816 100644 --- a/src/ZfcRbac/Factory/GuardsFactory.php +++ b/src/ZfcRbac/Factory/GuardsFactory.php @@ -25,7 +25,7 @@ * Create a list of guards * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class GuardsFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/HasRoleViewHelperFactory.php b/src/ZfcRbac/Factory/HasRoleViewHelperFactory.php index bf27bd13..387e7510 100644 --- a/src/ZfcRbac/Factory/HasRoleViewHelperFactory.php +++ b/src/ZfcRbac/Factory/HasRoleViewHelperFactory.php @@ -27,7 +27,7 @@ * Create the HasRole view helper * * @author JM Leroux - * @licence MIT + * @license MIT */ class HasRoleViewHelperFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/IsGrantedPluginFactory.php b/src/ZfcRbac/Factory/IsGrantedPluginFactory.php index 2de14e3f..531d5181 100644 --- a/src/ZfcRbac/Factory/IsGrantedPluginFactory.php +++ b/src/ZfcRbac/Factory/IsGrantedPluginFactory.php @@ -26,7 +26,7 @@ * Create the IsGranted controller plugin * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class IsGrantedPluginFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/IsGrantedViewHelperFactory.php b/src/ZfcRbac/Factory/IsGrantedViewHelperFactory.php index aef60e25..ba0fa347 100644 --- a/src/ZfcRbac/Factory/IsGrantedViewHelperFactory.php +++ b/src/ZfcRbac/Factory/IsGrantedViewHelperFactory.php @@ -26,7 +26,7 @@ * Create the IsGranted view helper * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class IsGrantedViewHelperFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/ModuleOptionsFactory.php b/src/ZfcRbac/Factory/ModuleOptionsFactory.php index 20f543cf..bfc1b713 100644 --- a/src/ZfcRbac/Factory/ModuleOptionsFactory.php +++ b/src/ZfcRbac/Factory/ModuleOptionsFactory.php @@ -26,7 +26,7 @@ * Factory for the module options * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class ModuleOptionsFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/ObjectRepositoryRoleProviderFactory.php b/src/ZfcRbac/Factory/ObjectRepositoryRoleProviderFactory.php index 0a18bdfb..5a19e30e 100644 --- a/src/ZfcRbac/Factory/ObjectRepositoryRoleProviderFactory.php +++ b/src/ZfcRbac/Factory/ObjectRepositoryRoleProviderFactory.php @@ -28,7 +28,7 @@ * Factory used to create an object repository role provider * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class ObjectRepositoryRoleProviderFactory implements FactoryInterface, MutableCreationOptionsInterface { diff --git a/src/ZfcRbac/Factory/RbacFactory.php b/src/ZfcRbac/Factory/RbacFactory.php index 6cd333e9..8cf50884 100644 --- a/src/ZfcRbac/Factory/RbacFactory.php +++ b/src/ZfcRbac/Factory/RbacFactory.php @@ -26,7 +26,7 @@ /** * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RbacFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/RedirectStrategyFactory.php b/src/ZfcRbac/Factory/RedirectStrategyFactory.php index d186df7b..455e6219 100644 --- a/src/ZfcRbac/Factory/RedirectStrategyFactory.php +++ b/src/ZfcRbac/Factory/RedirectStrategyFactory.php @@ -26,7 +26,7 @@ * Factory to create a redirect strategy * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RedirectStrategyFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/RoleProviderPluginManagerFactory.php b/src/ZfcRbac/Factory/RoleProviderPluginManagerFactory.php index 084c9923..58aada1f 100644 --- a/src/ZfcRbac/Factory/RoleProviderPluginManagerFactory.php +++ b/src/ZfcRbac/Factory/RoleProviderPluginManagerFactory.php @@ -27,7 +27,7 @@ * Factory to create a role provider plugin manager * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RoleProviderPluginManagerFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/RoleServiceFactory.php b/src/ZfcRbac/Factory/RoleServiceFactory.php index e7041fd3..b3626d05 100644 --- a/src/ZfcRbac/Factory/RoleServiceFactory.php +++ b/src/ZfcRbac/Factory/RoleServiceFactory.php @@ -27,7 +27,7 @@ * Factory to create the role service * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RoleServiceFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Factory/RouteGuardFactory.php b/src/ZfcRbac/Factory/RouteGuardFactory.php index 7bf4f67b..3a926631 100644 --- a/src/ZfcRbac/Factory/RouteGuardFactory.php +++ b/src/ZfcRbac/Factory/RouteGuardFactory.php @@ -27,7 +27,7 @@ * Create a route guard * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RouteGuardFactory implements FactoryInterface, MutableCreationOptionsInterface { diff --git a/src/ZfcRbac/Factory/RoutePermissionsGuardFactory.php b/src/ZfcRbac/Factory/RoutePermissionsGuardFactory.php index f5b99f70..c6fdc25e 100644 --- a/src/ZfcRbac/Factory/RoutePermissionsGuardFactory.php +++ b/src/ZfcRbac/Factory/RoutePermissionsGuardFactory.php @@ -29,7 +29,7 @@ * * @author Michaël Gallego * @author JM Lerouxw - * @licence MIT + * @license MIT */ class RoutePermissionsGuardFactory implements FactoryInterface, MutableCreationOptionsInterface { diff --git a/src/ZfcRbac/Factory/UnauthorizedStrategyFactory.php b/src/ZfcRbac/Factory/UnauthorizedStrategyFactory.php index 112da138..699dd23f 100644 --- a/src/ZfcRbac/Factory/UnauthorizedStrategyFactory.php +++ b/src/ZfcRbac/Factory/UnauthorizedStrategyFactory.php @@ -26,7 +26,7 @@ * Factory to create an unauthorized strategy * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class UnauthorizedStrategyFactory implements FactoryInterface { diff --git a/src/ZfcRbac/Guard/AbstractGuard.php b/src/ZfcRbac/Guard/AbstractGuard.php index 93e2678c..4eba2d74 100644 --- a/src/ZfcRbac/Guard/AbstractGuard.php +++ b/src/ZfcRbac/Guard/AbstractGuard.php @@ -27,7 +27,7 @@ * Abstract guard that hook on the MVC workflow * * @author Michaël Gallego - * @licence MIT + * @license MIT */ abstract class AbstractGuard implements GuardInterface { diff --git a/src/ZfcRbac/Guard/ControllerGuard.php b/src/ZfcRbac/Guard/ControllerGuard.php index 1f5fdcc4..d0e590c2 100644 --- a/src/ZfcRbac/Guard/ControllerGuard.php +++ b/src/ZfcRbac/Guard/ControllerGuard.php @@ -25,7 +25,7 @@ * A controller guard can protect a controller and a set of actions * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class ControllerGuard extends AbstractGuard { diff --git a/src/ZfcRbac/Guard/ControllerPermissionsGuard.php b/src/ZfcRbac/Guard/ControllerPermissionsGuard.php index 22391295..bdf85f9d 100644 --- a/src/ZfcRbac/Guard/ControllerPermissionsGuard.php +++ b/src/ZfcRbac/Guard/ControllerPermissionsGuard.php @@ -26,7 +26,7 @@ * * @author Michaël Gallego * @author JM Leroux - * @licence MIT + * @license MIT */ class ControllerPermissionsGuard extends AbstractGuard { diff --git a/src/ZfcRbac/Guard/GuardInterface.php b/src/ZfcRbac/Guard/GuardInterface.php index 4a88f063..27fd84db 100644 --- a/src/ZfcRbac/Guard/GuardInterface.php +++ b/src/ZfcRbac/Guard/GuardInterface.php @@ -32,7 +32,7 @@ * proper authorization service (see the doc for more details) * * @author Michaël Gallego - * @licence MIT + * @license MIT */ interface GuardInterface extends ListenerAggregateInterface { diff --git a/src/ZfcRbac/Guard/GuardPluginManager.php b/src/ZfcRbac/Guard/GuardPluginManager.php index dbb8573f..dc14b08d 100644 --- a/src/ZfcRbac/Guard/GuardPluginManager.php +++ b/src/ZfcRbac/Guard/GuardPluginManager.php @@ -27,8 +27,12 @@ * @method GuardInterface get($name) * * @author Michaël Gallego +<<<<<<< b459677bbe1c328d819969eed3fe7df68cb1112b * @author JM Leroux - * @licence MIT + * @license MIT +======= + * @license MIT +>>>>>>> changes "@license" with "@license" */ class GuardPluginManager extends AbstractPluginManager { diff --git a/src/ZfcRbac/Guard/ProtectionPolicyTrait.php b/src/ZfcRbac/Guard/ProtectionPolicyTrait.php index 1f337666..f6db418d 100644 --- a/src/ZfcRbac/Guard/ProtectionPolicyTrait.php +++ b/src/ZfcRbac/Guard/ProtectionPolicyTrait.php @@ -22,7 +22,7 @@ * Trait that is can be used for any guard that uses the protection policy pattern * * @author Michaël Gallego - * @licence MIT + * @license MIT */ trait ProtectionPolicyTrait { diff --git a/src/ZfcRbac/Guard/RouteGuard.php b/src/ZfcRbac/Guard/RouteGuard.php index 70aca06e..a8bdd5b3 100644 --- a/src/ZfcRbac/Guard/RouteGuard.php +++ b/src/ZfcRbac/Guard/RouteGuard.php @@ -26,7 +26,7 @@ * A route guard can protect a route or a hierarchy of routes (using simple wildcard pattern) * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RouteGuard extends AbstractGuard { diff --git a/src/ZfcRbac/Guard/RoutePermissionsGuard.php b/src/ZfcRbac/Guard/RoutePermissionsGuard.php index a48822da..1a479f2e 100644 --- a/src/ZfcRbac/Guard/RoutePermissionsGuard.php +++ b/src/ZfcRbac/Guard/RoutePermissionsGuard.php @@ -26,7 +26,7 @@ * * @author Michaël Gallego * @author JM Leroux - * @licence MIT + * @license MIT */ class RoutePermissionsGuard extends AbstractGuard { diff --git a/src/ZfcRbac/Identity/AuthenticationIdentityProvider.php b/src/ZfcRbac/Identity/AuthenticationIdentityProvider.php index 81dea0f6..5f469630 100644 --- a/src/ZfcRbac/Identity/AuthenticationIdentityProvider.php +++ b/src/ZfcRbac/Identity/AuthenticationIdentityProvider.php @@ -25,7 +25,7 @@ * This provider uses the Zend authentication service to fetch the identity * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class AuthenticationIdentityProvider implements IdentityProviderInterface { diff --git a/src/ZfcRbac/Identity/IdentityInterface.php b/src/ZfcRbac/Identity/IdentityInterface.php index 624a5f59..03c3c85c 100644 --- a/src/ZfcRbac/Identity/IdentityInterface.php +++ b/src/ZfcRbac/Identity/IdentityInterface.php @@ -22,7 +22,7 @@ * Interface for an identity * * @author Michaël Gallego - * @licence MIT + * @license MIT */ interface IdentityInterface { diff --git a/src/ZfcRbac/Identity/IdentityProviderInterface.php b/src/ZfcRbac/Identity/IdentityProviderInterface.php index 1f01b621..efd5f7eb 100644 --- a/src/ZfcRbac/Identity/IdentityProviderInterface.php +++ b/src/ZfcRbac/Identity/IdentityProviderInterface.php @@ -22,7 +22,7 @@ * An identity provider is an object that returns an object that implement ZfcRbac\Identity\IdentityInterface * * @author Michaël Gallego - * @licence MIT + * @license MIT */ interface IdentityProviderInterface { diff --git a/src/ZfcRbac/Module.php b/src/ZfcRbac/Module.php index 07777381..372b044e 100644 --- a/src/ZfcRbac/Module.php +++ b/src/ZfcRbac/Module.php @@ -26,7 +26,7 @@ * Module class for ZfcRbac * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class Module implements BootstrapListenerInterface, ConfigProviderInterface { diff --git a/src/ZfcRbac/Mvc/Controller/Plugin/IsGranted.php b/src/ZfcRbac/Mvc/Controller/Plugin/IsGranted.php index fe852623..e00f6aa0 100644 --- a/src/ZfcRbac/Mvc/Controller/Plugin/IsGranted.php +++ b/src/ZfcRbac/Mvc/Controller/Plugin/IsGranted.php @@ -25,7 +25,7 @@ * Controller plugin that allows to test a permission in a controller * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class IsGranted extends AbstractPlugin { diff --git a/src/ZfcRbac/Options/ModuleOptions.php b/src/ZfcRbac/Options/ModuleOptions.php index c49a8d50..96eec9d8 100644 --- a/src/ZfcRbac/Options/ModuleOptions.php +++ b/src/ZfcRbac/Options/ModuleOptions.php @@ -26,7 +26,7 @@ * Options for ZfcRbac module * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class ModuleOptions extends AbstractOptions { diff --git a/src/ZfcRbac/Options/RedirectStrategyOptions.php b/src/ZfcRbac/Options/RedirectStrategyOptions.php index 83a73614..b8d3712a 100644 --- a/src/ZfcRbac/Options/RedirectStrategyOptions.php +++ b/src/ZfcRbac/Options/RedirectStrategyOptions.php @@ -24,7 +24,7 @@ * Redirect strategy options * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RedirectStrategyOptions extends AbstractOptions { diff --git a/src/ZfcRbac/Options/UnauthorizedStrategyOptions.php b/src/ZfcRbac/Options/UnauthorizedStrategyOptions.php index bf22f69e..c4e4f89e 100644 --- a/src/ZfcRbac/Options/UnauthorizedStrategyOptions.php +++ b/src/ZfcRbac/Options/UnauthorizedStrategyOptions.php @@ -24,7 +24,7 @@ * Unauthorized strategy options * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class UnauthorizedStrategyOptions extends AbstractOptions { diff --git a/src/ZfcRbac/Permission/PermissionInterface.php b/src/ZfcRbac/Permission/PermissionInterface.php index 388c736b..28c5c929 100644 --- a/src/ZfcRbac/Permission/PermissionInterface.php +++ b/src/ZfcRbac/Permission/PermissionInterface.php @@ -27,7 +27,7 @@ * permission will be removed from RBAC component and moved here completely * * @author Michaël Gallego - * @licence MIT + * @license MIT */ interface PermissionInterface extends BasePermissionInterface { diff --git a/src/ZfcRbac/Role/InMemoryRoleProvider.php b/src/ZfcRbac/Role/InMemoryRoleProvider.php index bdbca0aa..5e17ddee 100644 --- a/src/ZfcRbac/Role/InMemoryRoleProvider.php +++ b/src/ZfcRbac/Role/InMemoryRoleProvider.php @@ -38,7 +38,7 @@ * follow the format :) * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class InMemoryRoleProvider implements RoleProviderInterface { diff --git a/src/ZfcRbac/Role/ObjectRepositoryRoleProvider.php b/src/ZfcRbac/Role/ObjectRepositoryRoleProvider.php index f6f445a8..924ebf6b 100644 --- a/src/ZfcRbac/Role/ObjectRepositoryRoleProvider.php +++ b/src/ZfcRbac/Role/ObjectRepositoryRoleProvider.php @@ -25,7 +25,7 @@ * Role provider that uses Doctrine object repository to fetch roles * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class ObjectRepositoryRoleProvider implements RoleProviderInterface { diff --git a/src/ZfcRbac/Role/RoleProviderInterface.php b/src/ZfcRbac/Role/RoleProviderInterface.php index d0dd07af..e9cad0f9 100644 --- a/src/ZfcRbac/Role/RoleProviderInterface.php +++ b/src/ZfcRbac/Role/RoleProviderInterface.php @@ -25,7 +25,7 @@ * or from memory * * @author Michaël Gallego - * @licence MIT + * @license MIT */ interface RoleProviderInterface { diff --git a/src/ZfcRbac/Role/RoleProviderPluginManager.php b/src/ZfcRbac/Role/RoleProviderPluginManager.php index 0d4d649d..d8f995f1 100644 --- a/src/ZfcRbac/Role/RoleProviderPluginManager.php +++ b/src/ZfcRbac/Role/RoleProviderPluginManager.php @@ -27,7 +27,7 @@ * @method RoleProviderInterface get($name) * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RoleProviderPluginManager extends AbstractPluginManager { diff --git a/src/ZfcRbac/Service/AuthorizationService.php b/src/ZfcRbac/Service/AuthorizationService.php index 0b86b18e..1ff7e72f 100644 --- a/src/ZfcRbac/Service/AuthorizationService.php +++ b/src/ZfcRbac/Service/AuthorizationService.php @@ -30,7 +30,7 @@ * granted a permission * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class AuthorizationService implements AuthorizationServiceInterface { diff --git a/src/ZfcRbac/Service/AuthorizationServiceInterface.php b/src/ZfcRbac/Service/AuthorizationServiceInterface.php index a22c6d05..a59f2226 100644 --- a/src/ZfcRbac/Service/AuthorizationServiceInterface.php +++ b/src/ZfcRbac/Service/AuthorizationServiceInterface.php @@ -24,7 +24,7 @@ * Minimal interface for an authorization service * * @author Michaël Gallego - * @licence MIT + * @license MIT */ interface AuthorizationServiceInterface { diff --git a/src/ZfcRbac/Service/RoleService.php b/src/ZfcRbac/Service/RoleService.php index 80d50f5a..0a23a555 100644 --- a/src/ZfcRbac/Service/RoleService.php +++ b/src/ZfcRbac/Service/RoleService.php @@ -32,7 +32,7 @@ * Role service * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RoleService { diff --git a/src/ZfcRbac/View/Helper/HasRole.php b/src/ZfcRbac/View/Helper/HasRole.php index 77cccbde..e4cb760f 100644 --- a/src/ZfcRbac/View/Helper/HasRole.php +++ b/src/ZfcRbac/View/Helper/HasRole.php @@ -25,7 +25,7 @@ * View helper that allows to test a role in a view * * @author JM Leroux - * @licence MIT + * @license MIT */ class HasRole extends AbstractHelper { diff --git a/src/ZfcRbac/View/Helper/IsGranted.php b/src/ZfcRbac/View/Helper/IsGranted.php index f2dab6c7..0126a6ef 100644 --- a/src/ZfcRbac/View/Helper/IsGranted.php +++ b/src/ZfcRbac/View/Helper/IsGranted.php @@ -25,7 +25,7 @@ * View helper that allows to test a permission in a view * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class IsGranted extends AbstractHelper { diff --git a/src/ZfcRbac/View/Strategy/AbstractStrategy.php b/src/ZfcRbac/View/Strategy/AbstractStrategy.php index 609162d9..a245de2d 100644 --- a/src/ZfcRbac/View/Strategy/AbstractStrategy.php +++ b/src/ZfcRbac/View/Strategy/AbstractStrategy.php @@ -26,7 +26,7 @@ * Abstract strategy for any unauthorized access * * @author Michaël Gallego - * @licence MIT + * @license MIT */ abstract class AbstractStrategy extends AbstractListenerAggregate { diff --git a/src/ZfcRbac/View/Strategy/RedirectStrategy.php b/src/ZfcRbac/View/Strategy/RedirectStrategy.php index fad3fcc8..c4aa403a 100644 --- a/src/ZfcRbac/View/Strategy/RedirectStrategy.php +++ b/src/ZfcRbac/View/Strategy/RedirectStrategy.php @@ -28,7 +28,7 @@ * This strategy redirects to another route when a user is unauthorized * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class RedirectStrategy extends AbstractStrategy { diff --git a/src/ZfcRbac/View/Strategy/UnauthorizedStrategy.php b/src/ZfcRbac/View/Strategy/UnauthorizedStrategy.php index 6a0f791b..fead8048 100644 --- a/src/ZfcRbac/View/Strategy/UnauthorizedStrategy.php +++ b/src/ZfcRbac/View/Strategy/UnauthorizedStrategy.php @@ -29,7 +29,7 @@ * This strategy renders a specific template when a user is unauthorized * * @author Michaël Gallego - * @licence MIT + * @license MIT */ class UnauthorizedStrategy extends AbstractStrategy {