| Conditions | 2 |
| Paths | 1 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function register() |
||
| 16 | { |
||
| 17 | $this->getContainer()->share(Client::class, function () { |
||
|
|
|||
| 18 | $service = $this->getContainer()->get(Service::class); |
||
| 19 | $host = getenv('REDIS_SERVICE_HOST'); |
||
| 20 | if (!$host) { |
||
| 21 | $redisService = $service->getName().'-redis'; |
||
| 22 | $host = $service->getHost($redisService)->address; |
||
| 23 | } |
||
| 24 | $client = new Client([ |
||
| 25 | 'scheme' => 'tcp', |
||
| 26 | 'host' => $host, |
||
| 27 | 'port' => 6379, |
||
| 28 | ]); |
||
| 29 | return $client; |
||
| 30 | }); |
||
| 31 | } |
||
| 32 | } |
||
| 33 |
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: