Skip to content

Commit 05371b7

Browse files
authored
Bump to PHPStan ^2.1.48 (#7971)
* Bump to PHPStan ^2.1.48 * fix
1 parent c576839 commit 05371b7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build/target-repository/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"require": {
1111
"php": "^7.4|^8.0",
12-
"phpstan/phpstan": "^2.1.47"
12+
"phpstan/phpstan": "^2.1.48"
1313
},
1414
"autoload": {
1515
"files": [

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"nikic/php-parser": "^5.7",
2424
"ondram/ci-detector": "^4.2",
2525
"phpstan/phpdoc-parser": "^2.3",
26-
"phpstan/phpstan": "^2.1.47",
26+
"phpstan/phpstan": "^2.1.48",
2727
"react/event-loop": "^1.6",
2828
"react/promise": "^3.3",
2929
"react/socket": "^1.17",

rules-tests/TypeDeclarationDocblocks/Rector/ClassMethod/DocblockReturnArrayFromDirectArrayInstanceRector/Fixture/false_and_true.php.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function FalseAndTrue()
1919
namespace Rector\Tests\TypeDeclarationDocblocks\Rector\ClassMethod\DocblockReturnArrayFromDirectArrayInstanceRector\Fixture;
2020

2121
/**
22-
* @return array<string, bool[]>
22+
* @return array<string, array<int, bool>>
2323
*/
2424
function FalseAndTrue()
2525
{

rules-tests/TypeDeclarationDocblocks/Rector/ClassMethod/DocblockReturnArrayFromDirectArrayInstanceRector/Fixture/override_bare_array.php.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function overrideBareArray()
2020
namespace Rector\Tests\TypeDeclarationDocblocks\Rector\ClassMethod\DocblockReturnArrayFromDirectArrayInstanceRector\Fixture;
2121

2222
/**
23-
* @return array<string, bool[]>
23+
* @return array<string, array<int, bool>>
2424
*/
2525
function overrideBareArray()
2626
{

0 commit comments

Comments
 (0)