rector/rules-tests/TypeDeclaration/Rector/ClassMethod/ParamTypeByParentCallTypeRector/Source/SomeControl.php

13 lines
221 B
PHP

<?php
declare(strict_types=1);
namespace Rector\Tests\TypeDeclaration\Rector\ClassMethod\ParamTypeByParentCallTypeRector\Source;
abstract class SomeControl
{
public function __construct(string $name)
{
}
}