1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-12 09:19:40 +01:00

Remove extra file

This commit is contained in:
Olle 2020-06-23 17:01:02 +00:00
parent 9d7c547ac7
commit 4c76c3c6e8

View File

@ -1,16 +0,0 @@
<?php
interface Bar { public function makeBar(): void; }
class Foo
{
/**
* @self-out Bar
* @return void
*/
public function makeBar() {}
}
$foo = new Foo();
$foo->makeBar();
$foo->makeBar();