class Foo

Same name in this branch
  1. 8.x drupal/core/vendor/phpunit/php-code-coverage/Tests/_files/source_with_ignore.php \Foo
  2. 8.x drupal/core/vendor/phpunit/php-code-coverage/Tests/_files/source_with_namespace.php \bar\baz\Foo
  3. 8.x drupal/core/vendor/phpunit/php-code-coverage/Tests/_files/source_without_namespace.php \Foo
  4. 8.x drupal/core/vendor/phpunit/php-code-coverage/Tests/_files/source_with_oneline_annotations.php \Foo
  5. 8.x drupal/core/vendor/phpunit/php-token-stream/Tests/_files/source.php \Foo
  6. 8.x drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/includepath/Foo.php \Foo
  7. 8.x drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/Namespaced2/Foo.php \Namespaced2\Foo
  8. 8.x drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/Namespaced/Foo.php \Namespaced\Foo
  9. 8.x drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/Namespaced/Foo.php \Apc\Namespaced\Foo
  10. 8.x drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/NamespaceCollision/C/Foo.php \NamespaceCollision\C\Foo
  11. 8.x drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/alpha/NamespaceCollision/A/Foo.php \NamespaceCollision\A\Foo
  12. 8.x drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/beta/NamespaceCollision/C/B/Foo.php \NamespaceCollision\C\B\Foo
  13. 8.x drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/beta/NamespaceCollision/A/B/Foo.php \NamespaceCollision\A\B\Foo
  14. 8.x drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/alpha/Apc/NamespaceCollision/A/Foo.php \Apc\NamespaceCollision\A\Foo
  15. 8.x drupal/core/vendor/symfony/class-loader/Symfony/Component/ClassLoader/Tests/Fixtures/Apc/beta/Apc/NamespaceCollision/A/B/Foo.php \Apc\NamespaceCollision\A\B\Foo

Some comment

Hierarchy

Expanded class hierarchy of Foo

67 string references to 'Foo'
AnnotationLoaderTest::testLoadClassMetadata in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Mapping/Loader/AnnotationLoaderTest.php
AnnotationLoaderTest::testLoadClassMetadataAndMerge in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Mapping/Loader/AnnotationLoaderTest.php
Test MetaData merge with parent annotation.
AutoExpireFlashBagTest::testAll in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Flash/AutoExpireFlashBagTest.php
AutoExpireFlashBagTest::testPeekAll in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Flash/AutoExpireFlashBagTest.php
AutoExpireFlashBagTest::testSet in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Flash/AutoExpireFlashBagTest.php

... See full list

File

drupal/core/vendor/phpunit/php-token-stream/Tests/_files/source.php, line 5

View source
class Foo {
  function foo() {
  }

  /**
   * @param Baz $baz
   */
  public function bar(Baz $baz) {
  }

  /**
   * @param Foobar $foobar
   */
  public static function foobar(Foobar $foobar) {
  }
  public function barfoo(Barfoo $barfoo) {
  }

  /**
   * This docblock does not belong to the baz function
   */
  public function baz() {
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Foo::bar public function
Foo::barfoo public function
Foo::baz public function This docblock does not belong to the baz function
Foo::foo function
Foo::foobar public static function