Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
46 | public function shouldGenerateWsseHeaderIfRequestIsSecured() |
||
47 | { |
||
48 | $endpoint = \Phake::partialMock(AbstractEndpoint::class, $this->soapClient, $this->wsse, true); |
||
49 | |||
50 | $endpoint->call($this->anything(), []); |
||
|
|||
51 | |||
52 | \Phake::verify($this->wsse)->generateHeader(); |
||
53 | \Phake::verify($this->soapClient)->__setSoapHeaders($this->anything()); |
||
54 | } |
||
55 | } |
||
56 |
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.