Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
35 | 2 | public function handle( |
|
36 | AbstractAnnotation $annotation, |
||
37 | ServiceMethodBuilder $serviceMethodBuilder, |
||
38 | ?Converter $converter, |
||
39 | ?int $index |
||
40 | ): void { |
||
41 | 2 | $serviceMethodBuilder->setIsMultipart(); |
|
42 | 2 | $serviceMethodBuilder->addParameterHandler( |
|
43 | 2 | $index, |
|
44 | 2 | new PartParamHandler($converter, $annotation->getValue(), $annotation->getEncoding()) |
|
45 | ); |
||
46 | 2 | } |
|
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 sub-classes 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 parent class: