kokjan/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParentheses...

14 lines
234 B
PHP
Raw Normal View History

2026-02-25 06:59:34 +00:00
<?php
use PHPUnit\Framework\TestCase;
class CoverageFunctionParenthesesWhitespaceTest extends TestCase
{
/**
* @covers ::globalFunction ( )
*/
public function testSomething()
{
globalFunction();
}
}