Skip to content
This repository has been archived by the owner on Jul 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #328 from manuakasam/hotfix/license-docblock-rebased
Browse files Browse the repository at this point in the history
Changes "@Licence" with "@license"
  • Loading branch information
bakura10 committed Mar 22, 2016
2 parents b459677 + 30446a8 commit 4a8fe9a
Show file tree
Hide file tree
Showing 57 changed files with 61 additions and 57 deletions.
2 changes: 1 addition & 1 deletion src/ZfcRbac/Assertion/AssertionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @author Michaël Gallego <[email protected]>
* @author Aeneas Rekkas
* @author Daniel Gimenes <[email protected]>
* @licence MIT
* @license MIT
*/
interface AssertionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Assertion/AssertionPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Plugin manager to create assertions
*
* @author Aeneas Rekkas
* @licence MIT
* @license MIT
*
* @method AssertionInterface get($name)
*/
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Collector/RbacCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* RbacCollector
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class RbacCollector implements CollectorInterface, Serializable
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Base exception interface for ZfcRbac
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
interface ExceptionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* InvalidArgumentException
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class InvalidArgumentException extends BaseInvalidArgumentException implements ExceptionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Exception/RoleNotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Exception that is thrown when a role cannot be found (for instance from a provider)
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class RoleNotFoundException extends BaseRuntimeException implements ExceptionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* RuntimeException
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class RuntimeException extends BaseRuntimeException implements ExceptionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Exception/UnauthorizedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Unauthorized exception
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class UnauthorizedException extends BaseRuntimeException implements UnauthorizedExceptionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Exception/UnauthorizedExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Interface for an unauthorized exception
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
interface UnauthorizedExceptionInterface extends ExceptionInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/AssertionPluginManagerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Factory to create a assertion plugin manager
*
* @author Aeneas Rekkas
* @licence MIT
* @license MIT
*/
class AssertionPluginManagerFactory implements FactoryInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Factory to create the authentication identity provider
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class AuthenticationIdentityProviderFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/AuthorizationServiceFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Factory to create the authorization service
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class AuthorizationServiceFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/ControllerGuardFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Create a controller guard
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class ControllerGuardFactory implements FactoryInterface, MutableCreationOptionsInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/ControllerPermissionsGuardFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* Create a controller guard for checking permissions
*
* @author JM Lerouxw <[email protected]>
* @licence MIT
* @license MIT
*/
class ControllerPermissionsGuardFactory implements FactoryInterface, MutableCreationOptionsInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/GuardPluginManagerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Factory to create a guard plugin manager
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class GuardPluginManagerFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/GuardsFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Create a list of guards
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class GuardsFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/HasRoleViewHelperFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Create the HasRole view helper
*
* @author JM Leroux <[email protected]>
* @licence MIT
* @license MIT
*/
class HasRoleViewHelperFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/IsGrantedPluginFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Create the IsGranted controller plugin
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class IsGrantedPluginFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/IsGrantedViewHelperFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Create the IsGranted view helper
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class IsGrantedViewHelperFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/ModuleOptionsFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Factory for the module options
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class ModuleOptionsFactory implements FactoryInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* Factory used to create an object repository role provider
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class ObjectRepositoryRoleProviderFactory implements FactoryInterface, MutableCreationOptionsInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/RbacFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

/**
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class RbacFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/RedirectStrategyFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Factory to create a redirect strategy
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class RedirectStrategyFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/RoleProviderPluginManagerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Factory to create a role provider plugin manager
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class RoleProviderPluginManagerFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/RoleServiceFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Factory to create the role service
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class RoleServiceFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/RouteGuardFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Create a route guard
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class RouteGuardFactory implements FactoryInterface, MutableCreationOptionsInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/RoutePermissionsGuardFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*
* @author Michaël Gallego <[email protected]>
* @author JM Lerouxw <[email protected]>
* @licence MIT
* @license MIT
*/
class RoutePermissionsGuardFactory implements FactoryInterface, MutableCreationOptionsInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Factory/UnauthorizedStrategyFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Factory to create an unauthorized strategy
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class UnauthorizedStrategyFactory implements FactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Guard/AbstractGuard.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Abstract guard that hook on the MVC workflow
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
abstract class AbstractGuard implements GuardInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Guard/ControllerGuard.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* A controller guard can protect a controller and a set of actions
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class ControllerGuard extends AbstractGuard
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Guard/ControllerPermissionsGuard.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @author Michaël Gallego <[email protected]>
* @author JM Leroux <[email protected]>
* @licence MIT
* @license MIT
*/
class ControllerPermissionsGuard extends AbstractGuard
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Guard/GuardInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* proper authorization service (see the doc for more details)
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
interface GuardInterface extends ListenerAggregateInterface
{
Expand Down
6 changes: 5 additions & 1 deletion src/ZfcRbac/Guard/GuardPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@
* @method GuardInterface get($name)
*
* @author Michaël Gallego <[email protected]>
<<<<<<< b459677bbe1c328d819969eed3fe7df68cb1112b
* @author JM Leroux <[email protected]>
* @licence MIT
* @license MIT
=======
* @license MIT
>>>>>>> changes "@license" with "@license"
*/
class GuardPluginManager extends AbstractPluginManager
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Guard/ProtectionPolicyTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Trait that is can be used for any guard that uses the protection policy pattern
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
trait ProtectionPolicyTrait
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Guard/RouteGuard.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* A route guard can protect a route or a hierarchy of routes (using simple wildcard pattern)
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class RouteGuard extends AbstractGuard
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Guard/RoutePermissionsGuard.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @author Michaël Gallego <[email protected]>
* @author JM Leroux <[email protected]>
* @licence MIT
* @license MIT
*/
class RoutePermissionsGuard extends AbstractGuard
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Identity/AuthenticationIdentityProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* This provider uses the Zend authentication service to fetch the identity
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class AuthenticationIdentityProvider implements IdentityProviderInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Identity/IdentityInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Interface for an identity
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
interface IdentityInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Identity/IdentityProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* An identity provider is an object that returns an object that implement ZfcRbac\Identity\IdentityInterface
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
interface IdentityProviderInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Module class for ZfcRbac
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class Module implements BootstrapListenerInterface, ConfigProviderInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Mvc/Controller/Plugin/IsGranted.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Controller plugin that allows to test a permission in a controller
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class IsGranted extends AbstractPlugin
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Options/ModuleOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Options for ZfcRbac module
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class ModuleOptions extends AbstractOptions
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZfcRbac/Options/RedirectStrategyOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Redirect strategy options
*
* @author Michaël Gallego <[email protected]>
* @licence MIT
* @license MIT
*/
class RedirectStrategyOptions extends AbstractOptions
{
Expand Down
Loading

0 comments on commit 4a8fe9a

Please sign in to comment.