Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
53 | public function handle() |
||
54 | { |
||
55 | $continue = true; |
||
56 | while ($continue) { |
||
57 | $socialNetwork = |
||
58 | $this->choice('Which social network you wish to configure?', |
||
59 | ConfigureSocialServicesManager::$socialNetworks, 0); |
||
60 | $this->configurator->driver($socialNetwork)->command($this)->execute(); |
||
|
|||
61 | $continue = $this->confirm('Do you wish to configure other social networks?', true); |
||
62 | } |
||
63 | } |
||
64 | } |
||
65 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.