function baz

69 string references to 'baz'
ApacheMatcherDumperTest::getRouteCollection in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Matcher/Dumper/ApacheMatcherDumperTest.php
BackendChainImplementationUnitTest::setUp in drupal/core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php
BackendChainUnitTest::createCacheBackend in drupal/core/modules/system/lib/Drupal/system/Tests/Cache/BackendChainUnitTest.php
Creates a cache backend to test.
CallbackValidatorTest::testCallbackMultipleMethods in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Constraints/CallbackValidatorTest.php
CallbackValidatorTest_Object::validateTwo in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Constraints/CallbackValidatorTest.php

... See full list

File

drupal/core/vendor/phpunit/php-code-coverage/Tests/_files/source_with_oneline_annotations.php, line 15

Code

function baz() {

  // a one-line comment
  print '*';

  // a one-line comment

  /* a one-line comment */
  print '*';

  /* a one-line comment */

  /* a one-line comment
   */
  print '*';

  /* a one-line comment
   */
  print '*';

  // @codeCoverageIgnore
  print '*';

  // @codeCoverageIgnoreStart
  print '*';
  print '*';

  // @codeCoverageIgnoreEnd
  print '*';
}