source.php in Zircon Profile 8
Same filename in this branch
Same filename and directory in other branches
File
vendor/phpunit/php-token-stream/tests/_fixture/source.phpView 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() {
}
public function blaz($x, $y) {
}
}