vendor directory

This commit is contained in:
2019-09-29 19:47:00 -05:00
parent c9b2854faa
commit 81d2278ac8
10384 changed files with 1089068 additions and 1 deletions

View File

@@ -0,0 +1,42 @@
<?php
/**
* Some comment
*/
class Foo{function foo(){}
/**
* @param Baz $baz
*/
public function bar(Baz $baz)
{
}
/**
* @param Foobar $foobar
*/
static public 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)
{
}
public function buzz($foo)
{
echo "${foo}";
return true;
}
}