Skip to content

Commit d18416c

Browse files
committed
Throw exception when expected dependency can't be found
1 parent 0a4f331 commit d18416c

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/collector/project/AbstractUnitObject.php

+6
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,12 @@ public function markDependencyAsUnresolved($dependency) {
343343
$depNode = $this->rootNode->queryOne(
344344
sprintf('//phpdox:implements[@full="%1$s"]|//phpdox:extends[@full="%1$s"]|//phpdox:uses[@full="%1$s"]', $dependency)
345345
);
346+
if (!$depNode) {
347+
throw new UnitObjectException(
348+
sprintf('No dependency "%s" found in unit %s', $dependency, $this->getName()),
349+
UnitObjectException::NoSuchDependency
350+
);
351+
}
346352
$depNode->setAttribute('unresolved', 'true');
347353
}
348354

src/collector/project/UnitObjectException.php

+5
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ class UnitObjectException extends \Exception {
3636
*/
3737
const NoSuchTrait = 6;
3838

39+
/**
40+
*
41+
*/
42+
const NoSuchDependency = 7;
43+
3944
}
4045

4146
}

0 commit comments

Comments
 (0)