| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 15 | class ServerControllerTest extends \PHPUnit_Framework_TestCase |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var ServerController |
||
| 19 | */ |
||
| 20 | protected $object; |
||
| 21 | |||
| 22 | protected function setUp(): void |
||
| 23 | { |
||
| 24 | $this->object = new ServerController('test', null); |
||
| 25 | } |
||
| 26 | |||
| 27 | protected function tearDown(): void |
||
| 29 | } |
||
| 30 | |||
| 31 | public function testActions() |
||
| 36 |
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.