Show title in quickfix .exp files
[hiphop-php.git] / hphp / hack / test / quickfixes / missing_method_types.php.exp
blob3dccb1702c23c6af6a310651cd69177e1078b6fb
1 Add stub method \IFoo::bar
3 <?hh
5 interface IFoo {
6 public function bar<T>(int $x, shape('y' => vec<int>) $s, shape(...) $_, IFoo $other, dynamic $d, mixed $m, (float, num) $tuple, T $t, Vector<null> $v, ?arraykey $ak, nothing $_, ?nonnull $_, int ...$args): void;
9 class Foo implements IFoo {
10 public function bar(int $x, shape("y" => vec<int>) $s, shape(...) $_, IFoo $other, dynamic $d, mixed $m, (float, num) $tuple, T $t, Vector<null> $v, ?arraykey $ak, nothing $_, mixed $_, int ...$args): void {}
13 public function otherMethod(): void {}