Skip to content

Commit 621ae62

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into 4.3
Conflicts: composer.json rector.php
2 parents 0e4ce5a + 0108a28 commit 621ae62

4 files changed

Lines changed: 3 additions & 8 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"phpunit/phpcov": "^8.2",
2626
"phpunit/phpunit": "^9.1",
2727
"predis/predis": "^1.1 || ^2.0",
28-
"rector/rector": "0.15.0",
28+
"rector/rector": "0.15.1",
2929
"vimeo/psalm": "^5.0"
3030
},
3131
"suggest": {

rector.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
use Rector\PSR4\Rector\FileWithoutNamespace\NormalizeNamespaceByPSR4ComposerAutoloadRector;
4949
use Rector\Set\ValueObject\LevelSetList;
5050
use Rector\Set\ValueObject\SetList;
51-
use Rector\TypeDeclaration\Rector\Property\TypedPropertyFromAssignsRector;
5251
use Utils\Rector\PassStrictParameterToFunctionParameterRector;
5352
use Utils\Rector\RemoveErrorSuppressInTryCatchStmtsRector;
5453
use Utils\Rector\RemoveVarTagFromClassConstantRector;

tests/system/ControllerTest.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,7 @@
3939
final class ControllerTest extends CIUnitTestCase
4040
{
4141
private App $config;
42-
43-
/**
44-
* @var Controller|null
45-
*/
46-
private $controller;
42+
private ?Controller $controller = null;
4743

4844
/**
4945
* Current request.

tests/system/View/DecoratorsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class DecoratorsTest extends CIUnitTestCase
2828
{
2929
private FileLocator $loader;
3030
private string $viewsDir;
31-
private $config;
31+
private ?\Config\View $config = null;
3232

3333
protected function setUp(): void
3434
{

0 commit comments

Comments
 (0)