Skip to content

Commit e100827

Browse files
committed
Merge remote-tracking branch 'origin/3.3.x' into 3.4.x
2 parents eadad5a + dd6bbae commit e100827

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+119
-261
lines changed

.gitattributes

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,4 @@
1212
/phpcs.xml.dist export-ignore
1313
/phpstan.neon export-ignore
1414
/phpstan-baseline.neon export-ignore
15-
/psalm.xml export-ignore
16-
/psalm-baseline.xml export-ignore
17-
/psalm.phpstub export-ignore
1815
/composer.lock export-ignore

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ on:
1212
jobs:
1313
coding-standards:
1414
name: "Coding Standards"
15-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@5.1.0"
15+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@5.2.0"
1616
with:
1717
composer-root-version: "3.0"

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
phpunit:
1414
name: "PHPUnit"
15-
uses: "doctrine/.github/.github/workflows/continuous-integration.yml@5.1.0"
15+
uses: "doctrine/.github/.github/workflows/continuous-integration.yml@5.2.0"
1616
with:
1717
composer-root-version: "3.0"
1818
php-versions: '["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]'

.github/workflows/release-on-milestone-closed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
release:
1010
name: "Git tag, release & create merge-up PR"
11-
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@5.1.0"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@5.2.0"
1212
secrets:
1313
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1414
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ on:
1212
jobs:
1313
static-analysis:
1414
name: "Static Analysis"
15-
uses: "doctrine/.github/.github/workflows/static-analysis.yml@5.1.0"
15+
uses: "doctrine/.github/.github/workflows/phpstan.yml@5.2.0"
1616
with:
1717
composer-root-version: "3.0"

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,13 @@
2525
"psr/cache": "^1.0 || ^2.0 || ^3.0"
2626
},
2727
"require-dev": {
28-
"phpstan/phpstan": "1.11.1",
28+
"phpstan/phpstan": "1.12.7",
2929
"phpstan/phpstan-phpunit": "^1",
3030
"phpstan/phpstan-strict-rules": "^1.1",
3131
"doctrine/coding-standard": "^12",
3232
"doctrine/common": "^3.0",
3333
"phpunit/phpunit": "^8.5.38 || ^9.5",
34-
"symfony/cache": "^4.4 || ^5.4 || ^6.0",
35-
"vimeo/psalm": "4.30.0 || 5.24.0"
34+
"symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
3635
},
3736
"conflict": {
3837
"doctrine/common": "<2.10"

psalm-baseline.xml

Lines changed: 0 additions & 24 deletions
This file was deleted.

psalm.phpstub

Lines changed: 0 additions & 12 deletions
This file was deleted.

psalm.xml

Lines changed: 0 additions & 72 deletions
This file was deleted.

src/Persistence/AbstractManagerRegistry.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ abstract class AbstractManagerRegistry implements ManagerRegistry
3232

3333
/**
3434
* @var string
35-
* @psalm-var class-string
35+
* @phpstan-var class-string
3636
*/
3737
private $proxyInterfaceName;
3838

3939
/**
4040
* @param array<string, string> $connections
4141
* @param array<string, string> $managers
42-
* @psalm-param class-string $proxyInterfaceName
42+
* @phpstan-param class-string $proxyInterfaceName
4343
*/
4444
public function __construct(
4545
string $name,
@@ -255,7 +255,7 @@ public function resetManager(?string $name = null)
255255
return $this->getManager($name);
256256
}
257257

258-
/** @psalm-param class-string $persistentObject */
258+
/** @phpstan-param class-string $persistentObject */
259259
private function selectManager(
260260
string $persistentObject,
261261
?string $persistentManagerName = null

0 commit comments

Comments
 (0)