make test pass

This commit is contained in:
TomasVotruba 2020-02-17 01:53:02 +01:00
parent 868a56ad5a
commit e9897408b6
2 changed files with 14 additions and 7 deletions

View File

@ -2,13 +2,7 @@
namespace Rector\TypeDeclaration\Tests\Rector\FunctionLike\ParamTypeDeclarationRector\Fixture;
interface ParentInterface
{
/**
* @param mixed $value
*/
public function __construct($value);
}
use Rector\TypeDeclaration\Tests\Rector\FunctionLike\ParamTypeDeclarationRector\Source\ParentInterface;
class ImplementingClass implements ParentInterface
{

View File

@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Rector\TypeDeclaration\Tests\Rector\FunctionLike\ParamTypeDeclarationRector\Source;
interface ParentInterface
{
/**
* @param mixed $value
*/
public function __construct($value);
}