Skip to content

Commit bf223f6

Browse files
authored
Merge pull request #9 from veewee/psalmv5
Psalm5 support
2 parents 2aa6c21 + cab0731 commit bf223f6

8 files changed

+23
-25
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,11 @@ and correct type of `array{name: string, age: int, location?: array{city: string
5151

5252
## Compatibility
5353

54-
| PSL | Psalm plugin |
55-
|-----|--------------|
56-
| 2.x | 2.x |
57-
| 1.x | 1.x |
54+
| PSL | Psalm plugin | Psalm |
55+
|-----|------------|-------|
56+
| 2.x | ^2.1 | v5 |
57+
| 2.x | ~2.0.0 | v4 |
58+
| 1.x | 1.x | v4 |
5859

5960
## Sponsors
6061

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"require": {
1313
"php": "^8.1",
14-
"vimeo/psalm": "^4.20 || ^5.0"
14+
"vimeo/psalm": "^5.0"
1515
},
1616
"conflict": {
1717
"azjezz/psl": "<2.0"

src/EventHandler/Iter/First/FunctionReturnTypeProvider.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,20 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
3434
}
3535

3636
if ($array_argument_type instanceof Type\Atomic\TNonEmptyArray) {
37-
return clone $array_argument_type->type_params[1];
37+
return $array_argument_type->type_params[1];
3838
}
3939

4040
if ($array_argument_type instanceof Type\Atomic\TNonEmptyList) {
41-
return clone $array_argument_type->type_param;
41+
return $array_argument_type->type_param;
4242
}
4343

4444
if ($array_argument_type instanceof Type\Atomic\TKeyedArray) {
4545
// TODO(azjezz): add support for this once psalm starts enforcing the shape order ( if ever ).
4646
//
4747
// foreach ($properties as $property) {
48-
// return clone $property;
48+
// return $property;
4949
// }
50-
return clone $array_argument_type->getGenericValueType();
50+
return $array_argument_type->getGenericValueType();
5151
}
5252

5353
return null;

src/EventHandler/Iter/FirstKey/FunctionReturnTypeProvider.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
3434
}
3535

3636
if ($array_argument_type instanceof Type\Atomic\TNonEmptyArray) {
37-
return clone $array_argument_type->type_params[0];
37+
return $array_argument_type->type_params[0];
3838
}
3939

4040
if ($array_argument_type instanceof Type\Atomic\TNonEmptyList) {
@@ -45,9 +45,9 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
4545
// TODO(azjezz): add support for this once psalm starts enforcing the shape order ( if ever ).
4646
//
4747
// foreach ($properties as $property) {
48-
// return clone $property;
48+
// return $property;
4949
// }
50-
return clone $array_argument_type->getGenericKeyType();
50+
return $array_argument_type->getGenericKeyType();
5151
}
5252

5353
return null;

src/EventHandler/Iter/Last/FunctionReturnTypeProvider.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
3434
}
3535

3636
if ($array_argument_type instanceof Type\Atomic\TNonEmptyArray) {
37-
return clone $array_argument_type->type_params[1];
37+
return $array_argument_type->type_params[1];
3838
}
3939

4040
if ($array_argument_type instanceof Type\Atomic\TNonEmptyList) {
41-
return clone $array_argument_type->type_param;
41+
return $array_argument_type->type_param;
4242
}
4343

4444
if ($array_argument_type instanceof Type\Atomic\TKeyedArray) {
@@ -50,8 +50,8 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
5050
// $last_property = $property;
5151
// }
5252
//
53-
// return clone $last_property;
54-
return clone $array_argument_type->getGenericValueType();
53+
// return $last_property;
54+
return $array_argument_type->getGenericValueType();
5555
}
5656

5757
return null;

src/EventHandler/Iter/LastKey/FunctionReturnTypeProvider.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
3434
}
3535

3636
if ($array_argument_type instanceof Type\Atomic\TNonEmptyArray) {
37-
return clone $array_argument_type->type_params[0];
37+
return $array_argument_type->type_params[0];
3838
}
3939

4040
if ($array_argument_type instanceof Type\Atomic\TNonEmptyList) {
@@ -50,8 +50,8 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
5050
// $last_property = $property;
5151
// }
5252
//
53-
// return clone $last_property;
54-
return clone $array_argument_type->getGenericKeyType();
53+
// return $last_property;
54+
return $array_argument_type->getGenericKeyType();
5555
}
5656

5757
return null;

src/EventHandler/Type/Optional/FunctionReturnTypeProvider.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
2828
return null;
2929
}
3030

31-
$clone = clone $argument_type;
32-
$clone->possibly_undefined = true;
33-
34-
return $clone;
31+
return $argument_type->setPossiblyUndefined(true);
3532
}
3633
}

src/EventHandler/Type/Shape/FunctionReturnTypeProvider.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
5757
return null;
5858
}
5959

60-
$property_type = clone $type->type_params[0];
61-
$property_type->possibly_undefined = $value->possibly_undefined;
60+
$property_type = $type->type_params[0];
61+
$property_type = $property_type->setPossiblyUndefined($value->possibly_undefined);
6262

6363
$properties[$name] = $property_type;
6464
}

0 commit comments

Comments
 (0)