Skip to content

Commit 55ea2aa

Browse files
committed
Fix hasImplements
1 parent 6169f3b commit 55ea2aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/collector/project/AbstractUnitObject.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public function addImplements($name) {
257257
* @return bool
258258
*/
259259
public function hasImplements() {
260-
return $this->rootNode->query('phpdox:interface')->length > 0;
260+
return $this->rootNode->query('phpdox:implements')->length > 0;
261261
}
262262

263263
/**

0 commit comments

Comments
 (0)