Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/phpunit/php-code-coverage/tests/_files/source_with_ignore.php
<?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();

}