Skip to content

Commit 22e300b

Browse files
committed
phpstan fix
1 parent 26be559 commit 22e300b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Fqsen.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
namespace phpDocumentor\Reflection;
1616

17+
use InvalidArgumentException;
18+
1719
/**
1820
* Value Object for Fqsen.
1921
*
@@ -46,7 +48,7 @@ public function __construct(string $fqsen)
4648
);
4749

4850
if ($result === 0) {
49-
throw new \InvalidArgumentException(
51+
throw new InvalidArgumentException(
5052
sprintf('"%s" is not a valid Fqsen.', $fqsen)
5153
);
5254
}

0 commit comments

Comments
 (0)