source.php

File

drupal/core/vendor/phpunit/php-token-stream/Tests/_files/source.php
View source
<?php

/**
 * Some comment
 */
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() {
  }

}

Classes

Namesort descending Description
Foo Some comment