Created
February 19, 2014 09:57
-
-
Save manuakasam/9089089 to your computer and use it in GitHub Desktop.
I love ::class
This file contains hidden or 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
| 'zfc_rbac' => [ | |
| 'identity_provider' => UserService::class | |
| ], | |
| 'controllers' => [ | |
| 'factories' => [ | |
| LoginController::class => LoginControllerFactory::class, | |
| LogoutController::class => LogoutControllerFactory::class, | |
| DetailController::class => DetailControllerFactory::class | |
| ] | |
| ], | |
| 'service_manager' => [ | |
| 'factories' => [ | |
| AuthenticationService::class => AuthenticationServiceFactory::class, | |
| ModuleOptions::class => ModuleOptionsFactory::class, | |
| UserService::class => UserServiceFactory::class, | |
| CreateNotExistingIdentityListener::class => CreateNotExistingIdentityListenerFactory::class, | |
| UpdateIdentityMetadataListener::class => UpdateIdentityMetadataListenerFactory::class, | |
| MapIdentityToObjectListener::class => MapIdentityToObjectListenerFactory::class | |
| ] | |
| ], | |
| 'form_elements' => [ | |
| 'invokables' => [ | |
| LoginForm::class => LoginForm::class | |
| ] | |
| ], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment