Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 3 | Features | 0 |
1 | <?php |
||
26 | public function createService(ServiceLocatorInterface $controllerManager) |
||
27 | { |
||
28 | /* @var ControllerManager $controllerManager*/ |
||
29 | $serviceManager = $controllerManager->getServiceLocator(); |
||
|
|||
30 | |||
31 | /* @var RedirectCallback $redirectCallback */ |
||
32 | $redirectCallback = $serviceManager->get('zfcuser_redirect_callback'); |
||
33 | |||
34 | /* @var UserController $controller */ |
||
35 | $controller = new UserController($redirectCallback); |
||
36 | $controller->setServiceLocator($serviceManager); |
||
37 | |||
38 | $controller->setChangeEmailForm($serviceManager->get('zfcuser_change_email_form')); |
||
39 | $controller->setOptions($serviceManager->get('zfcuser_module_options')); |
||
40 | $controller->setChangePasswordForm($serviceManager->get('zfcuser_change_password_form')); |
||
41 | $controller->setLoginForm($serviceManager->get('zfcuser_login_form')); |
||
42 | $controller->setRegisterForm($serviceManager->get('zfcuser_register_form')); |
||
43 | $controller->setUserService($serviceManager->get('zfcuser_user_service')); |
||
44 | |||
45 | return $controller; |
||
46 | } |
||
47 | } |
||
48 |
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: