| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 68 | public function getUnmappedYouTubes() |
||
| 69 | { |
||
| 70 | $query = " |
||
| 71 | SELECT `id`, `date` |
||
| 72 | FROM `jpemeric_stream`.`youtube` |
||
| 73 | LEFT JOIN `jpemeric_stream`.`post` |
||
| 74 | ON `post`.`type_id` = `youtube`.`id` AND `post`.`id` IS NULL"; |
||
| 75 | |||
| 76 | return $this |
||
| 77 | ->connections |
||
| 78 | ->getRead() |
||
| 79 | ->fetchAll($query); |
||
| 80 | } |
||
| 81 | } |
||
| 82 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italyis not defined by the methodfinale(...).The most likely cause is that the parameter was removed, but the annotation was not.