| 1 | <?php |
||
| 5 | trait ConnectorTrait |
||
| 6 | { |
||
| 7 | private $settings; |
||
| 8 | |||
| 9 | private $connection; |
||
| 10 | |||
| 11 | public function __construct(array $settings) |
||
| 15 | |||
| 16 | public function __destruct() |
||
| 20 | |||
| 21 | public function getConnection() |
||
| 29 | |||
| 30 | public function isConnected(): bool |
||
| 34 | |||
| 35 | public function disconnect(): void |
||
| 41 | |||
| 42 | public function getSettings(): array |
||
| 46 | } |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.