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 c32bb82 commit 228b490Copy full SHA for 228b490
PHP/CodeCoverage/Util.php
@@ -268,11 +268,11 @@ public static function getLinesToBeCovered($className, $methodName)
268
{
269
$codeToCoverList = array();
270
$result = array();
271
-
+ // @codeCoverageIgnoreStart
272
if (($pos = strpos($methodName, ' ')) !== FALSE) {
273
$methodName = substr($methodName, 0, $pos);
274
}
275
+ // @codeCoverageIgnoreEnd
276
$class = new ReflectionClass($className);
277
$method = new ReflectionMethod($className, $methodName);
278
$docComment = $class->getDocComment() . $method->getDocComment();
0 commit comments