mirror of
https://github.com/rectorphp/rector.git
synced 2025-03-14 04:19:44 +01:00
make test pass
This commit is contained in:
parent
868a56ad5a
commit
e9897408b6
@ -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
|
||||
{
|
@ -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);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user