mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
cleanup
This commit is contained in:
parent
7c48c9a122
commit
93268b348b
@ -10,7 +10,6 @@ use Rector\Contract\Bridge\ServiceTypeForNameProviderInterface;
|
||||
use Rector\Naming\PropertyNaming;
|
||||
use Rector\Node\Attribute;
|
||||
use Rector\Node\PropertyFetchNodeFactory;
|
||||
use Rector\NodeAnalyzer\Contrib\Symfony\ContainerCallAnalyzer;
|
||||
use Rector\NodeAnalyzer\MethodCallAnalyzer;
|
||||
use Rector\Rector\AbstractRector;
|
||||
|
||||
@ -38,11 +37,6 @@ final class GetterToPropertyRector extends AbstractRector
|
||||
*/
|
||||
private $propertyFetchNodeFactory;
|
||||
|
||||
/**
|
||||
* @var ContainerCallAnalyzer
|
||||
*/
|
||||
private $containerCallAnalyzer;
|
||||
|
||||
/**
|
||||
* @var ServiceTypeForNameProviderInterface
|
||||
*/
|
||||
@ -57,14 +51,12 @@ final class GetterToPropertyRector extends AbstractRector
|
||||
PropertyNaming $propertyNaming,
|
||||
ClassPropertyCollector $classPropertyCollector,
|
||||
PropertyFetchNodeFactory $propertyFetchNodeFactory,
|
||||
ContainerCallAnalyzer $containerCallAnalyzer,
|
||||
ServiceTypeForNameProviderInterface $serviceTypeForNameProvider,
|
||||
MethodCallAnalyzer $methodCallAnalyzer
|
||||
) {
|
||||
$this->propertyNaming = $propertyNaming;
|
||||
$this->classPropertyCollector = $classPropertyCollector;
|
||||
$this->propertyFetchNodeFactory = $propertyFetchNodeFactory;
|
||||
$this->containerCallAnalyzer = $containerCallAnalyzer;
|
||||
$this->serviceTypeForNameProvider = $serviceTypeForNameProvider;
|
||||
$this->methodCallAnalyzer = $methodCallAnalyzer;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user