File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phive xmlns =" https://phar.io/phive" >
3
- <phar name =" psalm" version =" ^4.30 .0" installed =" 4.30 .0" location =" ./tools/psalm.phar" copy =" true" />
3
+ <phar name =" psalm" version =" ^5.9 .0" installed =" 5.9 .0" location =" ./tools/psalm.phar" copy =" true" />
4
4
<phar name =" php-cs-fixer" version =" ^3.13.0" installed =" 3.13.0" location =" ./tools/php-cs-fixer.phar" copy =" true" />
5
5
</phive >
Original file line number Diff line number Diff line change 24
24
"ext-soap" : " *" ,
25
25
"ext-dom" : " *" ,
26
26
"azjezz/psl" : " ^2.1" ,
27
- "php-soap/engine" : " ^1.3" ,
27
+ "php-soap/engine" : " ^1.3|^2.0 " ,
28
28
"php-soap/wsdl" : " ^1.3" ,
29
29
"symfony/options-resolver" : " ^5.4 || ^6.0"
30
30
},
31
31
"require-dev" : {
32
- "php-soap/engine-integration-tests" : " ^1.3 " ,
32
+ "php-soap/engine-integration-tests" : " ^1.4 " ,
33
33
"php-soap/xml" : " ^1.4" ,
34
- "phpunit/phpunit" : " ^9.5 "
34
+ "phpunit/phpunit" : " ^10.0.19 "
35
35
}
36
36
}
Original file line number Diff line number Diff line change 5
5
use ArrayIterator ;
6
6
use IteratorAggregate ;
7
7
8
+ /**
9
+ * @implements IteratorAggregate<array-key, ClassMapInterface>
10
+ */
8
11
final class ClassMapCollection implements IteratorAggregate
9
12
{
10
13
/**
Original file line number Diff line number Diff line change 6
6
use InvalidArgumentException ;
7
7
use IteratorAggregate ;
8
8
9
+ /**
10
+ * @implements IteratorAggregate<array-key, TypeConverterInterface>
11
+ */
9
12
final class TypeConverterCollection implements IteratorAggregate
10
13
{
11
14
/**
@@ -25,7 +28,7 @@ public function __construct(array $converters = [])
25
28
}
26
29
}
27
30
28
-
31
+
29
32
private function serialize (TypeConverterInterface $ converter ): string
30
33
{
31
34
return $ converter ->getTypeNamespace () . ': ' . $ converter ->getTypeName ();
You can’t perform that action at this time.
0 commit comments