From d21ecf191f3e06ff7cc427a9fbaa55f25d169008 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 12:49:29 +0000 Subject: [PATCH 1/2] Update dependency rector/rector to v0.19.2 | datasource | package | from | to | | ---------- | ------------- | ------ | ------ | | packagist | rector/rector | 0.19.1 | 0.19.2 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- composer.json | 2 +- composer.lock | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/composer.json b/composer.json index 0e63d69..ed8a908 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ }, "require": { "php": "~8.1.0 || ~8.2.0 || ~8.3.0", - "rector/rector": "0.19.1" + "rector/rector": "0.19.2" }, "require-dev": { "laminas/laminas-servicemanager": "^3.6", diff --git a/composer.lock b/composer.lock index a438163..055fa4f 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "19fd01a944fa1e0dd257106eb9440021", + "content-hash": "064edc79252828bc97fab1631290a42e", "packages": [ { "name": "phpstan/phpstan", @@ -70,21 +70,21 @@ }, { "name": "rector/rector", - "version": "0.19.1", + "version": "0.19.2", "source": { "type": "git", "url": "https://github.com/rectorphp/rector.git", - "reference": "2bba0dd55ba92c23f1253d9e60d0242a896d1025" + "reference": "bc96a99895bf47c6bfe70ea1b799f0081ed5a903" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/rectorphp/rector/zipball/2bba0dd55ba92c23f1253d9e60d0242a896d1025", - "reference": "2bba0dd55ba92c23f1253d9e60d0242a896d1025", + "url": "https://api.github.com/repos/rectorphp/rector/zipball/bc96a99895bf47c6bfe70ea1b799f0081ed5a903", + "reference": "bc96a99895bf47c6bfe70ea1b799f0081ed5a903", "shasum": "" }, "require": { "php": "^7.2|^8.0", - "phpstan/phpstan": "^1.10.52" + "phpstan/phpstan": "^1.10.56" }, "conflict": { "rector/rector-doctrine": "*", @@ -114,7 +114,7 @@ ], "support": { "issues": "https://github.com/rectorphp/rector/issues", - "source": "https://github.com/rectorphp/rector/tree/0.19.1" + "source": "https://github.com/rectorphp/rector/tree/0.19.2" }, "funding": [ { @@ -122,7 +122,7 @@ "type": "github" } ], - "time": "2024-01-15T18:02:43+00:00" + "time": "2024-01-19T10:58:30+00:00" } ], "packages-dev": [ From d475701771324744a8a6469a09987d6da8aa2a30 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Fri, 19 Jan 2024 19:56:14 +0700 Subject: [PATCH 2/2] update Rector\Core\ subnamespace to Rector\ Signed-off-by: Abdul Malik Ikhsan --- .../ImplementsFactoryInterfaceToPsrFactoryRector.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Rector/Class_/ImplementsFactoryInterfaceToPsrFactoryRector.php b/src/Rector/Class_/ImplementsFactoryInterfaceToPsrFactoryRector.php index dfa6eb9..b5e90e4 100644 --- a/src/Rector/Class_/ImplementsFactoryInterfaceToPsrFactoryRector.php +++ b/src/Rector/Class_/ImplementsFactoryInterfaceToPsrFactoryRector.php @@ -12,10 +12,10 @@ use PhpParser\Node\Stmt\Namespace_; use PhpParser\Node\Stmt\Use_; use PhpParser\Node\Stmt\UseUse; -use Rector\Core\Configuration\Option; -use Rector\Core\Configuration\Parameter\SimpleParameterProvider; -use Rector\Core\PhpParser\Node\BetterNodeFinder; -use Rector\Core\PhpParser\Node\CustomNode\FileWithoutNamespace; +use Rector\Configuration\Option; +use Rector\Configuration\Parameter\SimpleParameterProvider; +use Rector\PhpParser\Node\BetterNodeFinder; +use Rector\PhpParser\Node\CustomNode\FileWithoutNamespace; use Rector\Naming\Naming\UseImportsResolver; use Rector\NodeTypeResolver\Node\AttributeKey; use Rector\Rector\AbstractRector;