We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent badc690 commit 7c7538cCopy full SHA for 7c7538c
src/PHPFUI/InstaDoc/Section/CodeCommon.php
@@ -427,7 +427,9 @@ protected function getInheritedSummary(\phpDocumentor\Reflection\DocBlock $docBl
427
428
foreach ($tags as $index => $tag)
429
{
430
- if (0 >= \stripos($tag->getName(), 'inheritdoc'))
+ $pos = \stripos($tag->getName(), 'inheritdoc');
431
+
432
+ if (false !== $pos && 0 >= $pos)
433
434
$reflectionClass = $reflectionMethod->getDeclaringClass();
435
$parent = $reflectionClass->getParentClass();
0 commit comments