| Total Complexity | 7 |
| Total Lines | 53 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class MultiResultSetAdapter implements MultiResultSetAdapterInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var bool |
||
| 13 | */ |
||
| 14 | protected $valid = true; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var Connection |
||
| 18 | */ |
||
| 19 | protected $connection; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param Connection $connection |
||
| 23 | */ |
||
| 24 | public function __construct(Connection $connection) |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @inheritdoc |
||
| 31 | * @throws ConnectionException |
||
| 32 | */ |
||
| 33 | public function getNext() |
||
| 42 | } |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @inheritdoc |
||
| 47 | * @throws ConnectionException |
||
| 48 | */ |
||
| 49 | public function current() |
||
| 53 | } |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @inheritdoc |
||
| 57 | * @throws ConnectionException |
||
| 58 | */ |
||
| 59 | public function valid() |
||
| 64 |
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.