1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

Remove dumb test

This commit is contained in:
Matthew Brown 2019-12-20 18:09:26 +00:00
parent 395cac0e0b
commit 8bba5221b2

View File

@ -895,31 +895,6 @@ class TraitTest extends TestCase
use Feature;
}',
],
'inheritBad' => [
'<?php
interface FooBarInterface
{
/**
* @param string $parameter
*/
public function foo($parameter): void;
}
trait FooBarTrait
{
/**
* @param string $parameter
*/
public function foo(string $parameter): void
{
}
}
class FooBar implements FooBarInterface
{
use FooBarTrait;
}'
],
];
}