File tree 6 files changed +14
-20
lines changed
6 files changed +14
-20
lines changed Original file line number Diff line number Diff line change 10
10
pull_request :
11
11
12
12
env :
13
- PHP_VERSION : 8.1
13
+ PHP_VERSION : 8.3
14
14
15
15
jobs :
16
16
composer-require-checker :
17
17
name : Check missing composer requirements
18
- runs-on : ubuntu-22.04
18
+ runs-on : ubuntu-latest
19
19
steps :
20
20
- uses : shivammathur/setup-php@v2
21
21
with :
33
33
- run : |
34
34
composer install --no-interaction --no-progress --ansi --no-scripts
35
35
composer show
36
- - uses : docker://webfactory/composer-require-checker:3.2 .0
36
+ - uses : docker://ghcr.io/ webfactory/composer-require-checker:4.12 .0
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ name: Coding Standards
12
12
jobs :
13
13
fix-cs-issues :
14
14
name : PHP-CS-Fixer
15
- runs-on : ubuntu-22.04
15
+ runs-on : ubuntu-latest
16
16
if : github.actor != 'dependabot[bot]'
17
17
steps :
18
18
- name : Checkout code
Original file line number Diff line number Diff line change 11
11
pull_request :
12
12
13
13
env :
14
- PHP_VERSION : 7.4
15
- PSALM_VERSION : 4.22 .0
14
+ PHP_VERSION : 8.3
15
+ PSALM_VERSION : 5.25 .0
16
16
17
17
jobs :
18
18
Psalm :
19
19
name : Psalm
20
- runs-on : ubuntu-22.04
20
+ runs-on : ubuntu-latest
21
21
steps :
22
22
- uses : shivammathur/setup-php@v2
23
23
with :
Original file line number Diff line number Diff line change 13
13
],
14
14
15
15
"require" : {
16
- "psr/log " : " ^1|^2|^3 " ,
17
- "php " : " ^7.2|8.0.*|8.1.*|8.2.*|8.3.* "
16
+ "php " : " ^7.2|8.0.*|8.1.*|8.2.*|8.3.* " ,
17
+ "psr/log " : " ^1|^2|^3 "
18
18
},
19
19
20
20
"require-dev" : {
21
- "phpunit/phpunit" : " ^8.5|^9.5" ,
21
+ "phpunit/phpunit" : " ^8.5|^9.5|^10.5" ,
22
+ "symfony/error-handler" : " ^5.4|^6.4|^7.1" ,
22
23
"symfony/phpunit-bridge" : " >= 6.0"
23
24
},
24
25
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit
3
- xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
- xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/8.5/phpunit.xsd"
5
- bootstrap =" vendor/autoload.php" colors =" true" >
6
-
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap =" vendor/autoload.php" colors =" true" cacheDirectory =" .phpunit.cache" >
7
3
<testsuites >
8
4
<testsuite name =" Project Test Suite" >
9
5
<directory >tests</directory >
10
6
</testsuite >
11
7
</testsuites >
12
- <listeners >
13
- <listener class =" \Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
14
- </listeners >
15
8
</phpunit >
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ private function fetchSourceId(object $sourceObject): int
100
100
{
101
101
$ id = $ this ->mapper ->idOf ($ sourceObject );
102
102
103
- if ($ this ->lastSourceId && $ id < $ this ->lastSourceId ) {
103
+ if (null !== $ this ->lastSourceId && $ id < $ this ->lastSourceId ) {
104
104
throw new ContentMappingException ('Source IDs are out of order ' );
105
105
}
106
106
$ this ->lastSourceId = $ id ;
@@ -115,7 +115,7 @@ private function fetchDestinationId(object $destinationObject): int
115
115
{
116
116
$ id = $ this ->destination ->idOf ($ destinationObject );
117
117
118
- if ($ this ->lastDestinationId && $ id < $ this ->lastDestinationId ) {
118
+ if (null !== $ this ->lastDestinationId && $ id < $ this ->lastDestinationId ) {
119
119
throw new ContentMappingException ('Destination IDs are out of order ' );
120
120
}
121
121
$ this ->lastDestinationId = $ id ;
You can’t perform that action at this time.
0 commit comments