Skip to content

Commit 56497a3

Browse files
authored
Merge pull request #392 from greg0ire/4.0.x
Merge commit right before dropping Psalm into 4.0.x
2 parents ca2d3cc + 9a83592 commit 56497a3

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ 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"

.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
php-versions: '["8.1", "8.2", "8.3"]'
1818
secrets:

.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,4 +12,4 @@ 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/static-analysis.yml@5.2.0"

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +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
"phpunit/phpunit": "^9.6",
33-
"symfony/cache": "^4.4 || ^5.4 || ^6.0",
34-
"vimeo/psalm": "4.30.0 || 5.24.0"
33+
"symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
34+
"vimeo/psalm": "4.30.0 || 5.26.1"
3535
},
3636
"conflict": {
3737
"doctrine/common": "<2.10"

tests/Persistence/Mapping/AbstractClassMetadataFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function testItGetsTheSameMetadataForBackslashedClassName(): void
8484
->method('newClassMetadataInstance')
8585
->with(SomeOtherEntity::class)
8686
->willReturn(
87-
$this->createStub(ClassMetadata::class),
87+
self::createStub(ClassMetadata::class),
8888
);
8989

9090
/** @psalm-suppress ArgumentTypeCoercion */

0 commit comments

Comments
 (0)