File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ public static function make(AuthEntity $authEntity): Client
36
36
* @SuppressWarnings(PHPMD.StaticAccess)
37
37
*
38
38
* @param LoanRequestEntity $requestEntity
39
- * @return ResponseEntity
40
39
* @throws EntityValidationException
40
+ * @return ResponseEntity
41
41
*/
42
42
public function requestNewLoan (LoanRequestEntity $ requestEntity ): ResponseEntity
43
43
{
Original file line number Diff line number Diff line change @@ -28,28 +28,28 @@ class UpdateShippingStatusRequestEntity extends AbstractRequestEntity
28
28
* message = "Choose a valid shipment status."
29
29
* )
30
30
*/
31
- public null | string $ shippingStatus ;
31
+ public ? string $ shippingStatus ;
32
32
33
33
/**
34
34
* @Assert\NotNull(message = "The value of tracking id status should not be null.")
35
35
*/
36
- public null | string $ trackingId ;
36
+ public ? string $ trackingId ;
37
37
38
38
/**
39
39
* @Assert\NotNull(message = "The value of tracking company should not be null.")
40
40
*/
41
- public null | string $ trackingCompany ;
41
+ public ? string $ trackingCompany ;
42
42
43
43
/**
44
44
* @Assert\NotNull(message = "The value of delivery date should not be null.")
45
45
* @Assert\Date(message = "The value of delivery date is not a valid Date with format YYYY-MM-DD.")
46
46
*/
47
- public null | string $ deliveryDate ;
47
+ public ? string $ deliveryDate ;
48
48
49
49
/**
50
50
* @Assert\NotNull(message = "The value of invId should not be null.")
51
51
*/
52
- protected null | string $ invId ;
52
+ protected ? string $ invId ;
53
53
54
54
/**
55
55
* @SuppressWarnings(PHPMD.StaticAccess)
You can’t perform that action at this time.
0 commit comments