source_with_ignore.php in Zircon Profile 8
Same filename and directory in other branches
File
vendor/phpunit/php-code-coverage/tests/_files/source_with_ignore.phpView source
<?php
if ($neverHappens) {
// @codeCoverageIgnoreStart
print '*';
// @codeCoverageIgnoreEnd
}
/**
* @codeCoverageIgnore
*/
class Foo {
public function bar() {
}
}
class Bar {
/**
* @codeCoverageIgnore
*/
public function foo() {
}
}
function baz() {
print '*';
// @codeCoverageIgnore
}
interface Bor {
public function foo();
}