mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 13:28:18 +01:00
add one missing in whole family
This commit is contained in:
parent
9e869098ff
commit
f91ce82066
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
namespace Rector\Tests\DowngradePhp72\Rector\Class_\DowngradeParameterTypeWideningRector\Fixture;
|
||||
|
||||
abstract class AbstractRecursivePass
|
||||
{
|
||||
protected function processValue($value, bool $isRoot = false)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
final class FirstCompilerPass extends AbstractRecursivePass
|
||||
{
|
||||
protected function processValue($value, $isRoot = false)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
final class SecondCompilerPass extends AbstractRecursivePass
|
||||
{
|
||||
protected function processValue($value, bool $isRoot = false)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
-----
|
||||
<?php
|
||||
|
||||
namespace Rector\Tests\DowngradePhp72\Rector\Class_\DowngradeParameterTypeWideningRector\Fixture;
|
||||
|
||||
abstract class AbstractRecursivePass
|
||||
{
|
||||
/**
|
||||
* @param bool $isRoot
|
||||
*/
|
||||
protected function processValue($value, $isRoot = false)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
final class FirstCompilerPass extends AbstractRecursivePass
|
||||
{
|
||||
protected function processValue($value, $isRoot = false)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
final class SecondCompilerPass extends AbstractRecursivePass
|
||||
{
|
||||
/**
|
||||
* @param bool $isRoot
|
||||
*/
|
||||
protected function processValue($value, $isRoot = false)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Loading…
x
Reference in New Issue
Block a user