CoverageFunctionParenthesesWhitespaceTest.php 234 B

12345678910111213
  1. <?php
  2. use PHPUnit\Framework\TestCase;
  3. class CoverageFunctionParenthesesWhitespaceTest extends TestCase
  4. {
  5. /**
  6. * @covers ::globalFunction ( )
  7. */
  8. public function testSomething()
  9. {
  10. globalFunction();
  11. }
  12. }