diff --git a/src/Responses/CreateOrderResponse.php b/src/Responses/CreateOrderResponse.php index de66e6d..733cb1e 100644 --- a/src/Responses/CreateOrderResponse.php +++ b/src/Responses/CreateOrderResponse.php @@ -50,6 +50,8 @@ final class CreateOrderResponse implements Response, ScalarValue /** * @phan-suppress PhanAccessReadOnlyMagicProperty + * + * @param mixed $value */ public static function withValue($value) { diff --git a/tests/Deserialization/ValidationErrorTest.php b/tests/Deserialization/ValidationErrorTest.php index 2c46023..099f266 100644 --- a/tests/Deserialization/ValidationErrorTest.php +++ b/tests/Deserialization/ValidationErrorTest.php @@ -47,7 +47,7 @@ class ValidationErrorTest extends TestCase public function test_it_deserializes() { - /** @var ValidationError $error */ + /** @var ValidationError $error */ $error = $this->getSerializer()->deserialize(self::EXAMPLE_ERROR, ValidationError::class); $this->assertSame('FIELD_NOT_VALID', $error->getErrorCode());