Skip to content

Commit 14333cf

Browse files
feat: return fqn for phpdoc
1 parent 2b0a315 commit 14333cf

89 files changed

Lines changed: 314 additions & 322 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

generated/Magebit/UcpSpec/Api/Discovery/UCPDiscoveryProfileInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@ interface UCPDiscoveryProfileInterface
2626
public const KEY_SIGNING_KEYS = 'signing_keys';
2727

2828
/**
29-
* @return UcpDiscoveryProfileInterface
29+
* @return \Magebit\UcpSpec\Api\Schemas\UcpDiscoveryProfileInterface
3030
*/
3131
public function getUcp(): UcpDiscoveryProfileInterface1;
3232

3333
/**
3434
* Payment configuration containing handlers
3535
*
36-
* @return UCPDiscoveryProfilePaymentInterface|null
36+
* @return \Magebit\UcpSpec\Api\Discovery\UCPDiscoveryProfilePaymentInterface|null
3737
*/
3838
public function getPayment(): UCPDiscoveryProfilePaymentInterface|null;
3939

4040
/**
4141
* Public keys for signature verification (JWK format). Used to verify signed responses, webhooks, and other authenticated messages from this party.
4242
*
43-
* @return UCPDiscoveryProfileSigningKeysItemInterface[]|null
43+
* @return \Magebit\UcpSpec\Api\Discovery\UCPDiscoveryProfileSigningKeysItemInterface[]|null
4444
*/
4545
public function getSigningKeys(): array|null;
4646
}

generated/Magebit/UcpSpec/Api/Discovery/UCPDiscoveryProfilePaymentInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ interface UCPDiscoveryProfilePaymentInterface
2424
/**
2525
* Payment handler definitions that describe how instruments can be collected
2626
*
27-
* @return PaymentHandlerResponseInterface[]|null
27+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\PaymentHandlerResponseInterface[]|null
2828
*/
2929
public function getHandlers(): array|null;
3030
}

generated/Magebit/UcpSpec/Api/Schemas/Shopping/Ap2MandateCheckoutResponseWithAp2Interface.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ interface Ap2MandateCheckoutResponseWithAp2Interface
4949
public const STATUS_CANCELED = 'canceled';
5050

5151
/**
52-
* @return UcpResponseCheckoutInterface
52+
* @return \Magebit\UcpSpec\Api\Schemas\UcpResponseCheckoutInterface
5353
*/
5454
public function getUcp(): UcpResponseCheckoutInterface;
5555

@@ -63,14 +63,14 @@ public function getId(): string;
6363
/**
6464
* List of line items being checked out.
6565
*
66-
* @return LineItemResponseInterface[]
66+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\LineItemResponseInterface[]
6767
*/
6868
public function getLineItems(): array;
6969

7070
/**
7171
* Representation of the buyer.
7272
*
73-
* @return BuyerInterface|null
73+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\BuyerInterface|null
7474
*/
7575
public function getBuyer(): BuyerInterface|null;
7676

@@ -91,21 +91,21 @@ public function getCurrency(): string;
9191
/**
9292
* Different cart totals.
9393
*
94-
* @return TotalResponseInterface[]
94+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\TotalResponseInterface[]
9595
*/
9696
public function getTotals(): array;
9797

9898
/**
9999
* List of messages with error and info about the checkout session state.
100100
*
101-
* @return MessageInterface[]|null
101+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\MessageInterface[]|null
102102
*/
103103
public function getMessages(): array|null;
104104

105105
/**
106106
* Links to be displayed by the platform (Privacy Policy, TOS). Mandatory for legal compliance.
107107
*
108-
* @return LinkInterface[]
108+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\LinkInterface[]
109109
*/
110110
public function getLinks(): array;
111111

@@ -124,21 +124,21 @@ public function getExpiresAt(): string|null;
124124
public function getContinueUrl(): string|null;
125125

126126
/**
127-
* @return PaymentResponseInterface
127+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\PaymentResponseInterface
128128
*/
129129
public function getPayment(): PaymentResponseInterface;
130130

131131
/**
132132
* Details about an order created for this checkout session.
133133
*
134-
* @return OrderConfirmationInterface|null
134+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\OrderConfirmationInterface|null
135135
*/
136136
public function getOrder(): OrderConfirmationInterface|null;
137137

138138
/**
139139
* AP2 extension data including merchant authorization.
140140
*
141-
* @return Ap2MandateAp2CheckoutResponseInterface|null
141+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Ap2MandateAp2CheckoutResponseInterface|null
142142
*/
143143
public function getAp2(): Ap2MandateAp2CheckoutResponseInterface|null;
144144
}

generated/Magebit/UcpSpec/Api/Schemas/Shopping/Ap2MandateCompleteRequestWithAp2Interface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ interface Ap2MandateCompleteRequestWithAp2Interface
2424
/**
2525
* AP2 extension data including checkout mandate.
2626
*
27-
* @return Ap2MandateAp2CompleteRequestInterface|null
27+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Ap2MandateAp2CompleteRequestInterface|null
2828
*/
2929
public function getAp2(): Ap2MandateAp2CompleteRequestInterface|null;
3030
}

generated/Magebit/UcpSpec/Api/Schemas/Shopping/BuyerConsentBuyerInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function getPhoneNumber(): string|null;
6464
/**
6565
* Consent tracking fields.
6666
*
67-
* @return BuyerConsentConsentInterface|null
67+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\BuyerConsentConsentInterface|null
6868
*/
6969
public function getConsent(): BuyerConsentConsentInterface|null;
7070
}

generated/Magebit/UcpSpec/Api/Schemas/Shopping/BuyerConsentCheckoutInterface.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ interface BuyerConsentCheckoutInterface
4747
public const STATUS_CANCELED = 'canceled';
4848

4949
/**
50-
* @return UcpResponseCheckoutInterface
50+
* @return \Magebit\UcpSpec\Api\Schemas\UcpResponseCheckoutInterface
5151
*/
5252
public function getUcp(): UcpResponseCheckoutInterface;
5353

@@ -61,14 +61,14 @@ public function getId(): string;
6161
/**
6262
* List of line items being checked out.
6363
*
64-
* @return LineItemResponseInterface[]
64+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\LineItemResponseInterface[]
6565
*/
6666
public function getLineItems(): array;
6767

6868
/**
6969
* Buyer with consent tracking.
7070
*
71-
* @return BuyerConsentBuyerInterface|null
71+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\BuyerConsentBuyerInterface|null
7272
*/
7373
public function getBuyer(): BuyerConsentBuyerInterface|null;
7474

@@ -89,21 +89,21 @@ public function getCurrency(): string;
8989
/**
9090
* Different cart totals.
9191
*
92-
* @return TotalResponseInterface[]
92+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\TotalResponseInterface[]
9393
*/
9494
public function getTotals(): array;
9595

9696
/**
9797
* List of messages with error and info about the checkout session state.
9898
*
99-
* @return MessageInterface[]|null
99+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\MessageInterface[]|null
100100
*/
101101
public function getMessages(): array|null;
102102

103103
/**
104104
* Links to be displayed by the platform (Privacy Policy, TOS). Mandatory for legal compliance.
105105
*
106-
* @return LinkInterface[]
106+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\LinkInterface[]
107107
*/
108108
public function getLinks(): array;
109109

@@ -122,14 +122,14 @@ public function getExpiresAt(): string|null;
122122
public function getContinueUrl(): string|null;
123123

124124
/**
125-
* @return PaymentResponseInterface
125+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\PaymentResponseInterface
126126
*/
127127
public function getPayment(): PaymentResponseInterface;
128128

129129
/**
130130
* Details about an order created for this checkout session.
131131
*
132-
* @return OrderConfirmationInterface|null
132+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\OrderConfirmationInterface|null
133133
*/
134134
public function getOrder(): OrderConfirmationInterface|null;
135135
}

generated/Magebit/UcpSpec/Api/Schemas/Shopping/CheckoutCreateRequestInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ interface CheckoutCreateRequestInterface
3030
/**
3131
* List of line items being checked out.
3232
*
33-
* @return LineItemCreateRequestInterface[]
33+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\LineItemCreateRequestInterface[]
3434
*/
3535
public function getLineItems(): array;
3636

3737
/**
3838
* Representation of the buyer.
3939
*
40-
* @return BuyerInterface|null
40+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\BuyerInterface|null
4141
*/
4242
public function getBuyer(): BuyerInterface|null;
4343

@@ -49,7 +49,7 @@ public function getBuyer(): BuyerInterface|null;
4949
public function getCurrency(): string;
5050

5151
/**
52-
* @return PaymentCreateRequestInterface
52+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\PaymentCreateRequestInterface
5353
*/
5454
public function getPayment(): PaymentCreateRequestInterface;
5555
}

generated/Magebit/UcpSpec/Api/Schemas/Shopping/CheckoutResponseInterface.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ interface CheckoutResponseInterface
4848
public const STATUS_CANCELED = 'canceled';
4949

5050
/**
51-
* @return UcpResponseCheckoutInterface
51+
* @return \Magebit\UcpSpec\Api\Schemas\UcpResponseCheckoutInterface
5252
*/
5353
public function getUcp(): UcpResponseCheckoutInterface;
5454

@@ -62,14 +62,14 @@ public function getId(): string;
6262
/**
6363
* List of line items being checked out.
6464
*
65-
* @return LineItemResponseInterface[]
65+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\LineItemResponseInterface[]
6666
*/
6767
public function getLineItems(): array;
6868

6969
/**
7070
* Representation of the buyer.
7171
*
72-
* @return BuyerInterface|null
72+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\BuyerInterface|null
7373
*/
7474
public function getBuyer(): BuyerInterface|null;
7575

@@ -90,21 +90,21 @@ public function getCurrency(): string;
9090
/**
9191
* Different cart totals.
9292
*
93-
* @return TotalResponseInterface[]
93+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\TotalResponseInterface[]
9494
*/
9595
public function getTotals(): array;
9696

9797
/**
9898
* List of messages with error and info about the checkout session state.
9999
*
100-
* @return MessageInterface[]|null
100+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\MessageInterface[]|null
101101
*/
102102
public function getMessages(): array|null;
103103

104104
/**
105105
* Links to be displayed by the platform (Privacy Policy, TOS). Mandatory for legal compliance.
106106
*
107-
* @return LinkInterface[]
107+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\LinkInterface[]
108108
*/
109109
public function getLinks(): array;
110110

@@ -123,14 +123,14 @@ public function getExpiresAt(): string|null;
123123
public function getContinueUrl(): string|null;
124124

125125
/**
126-
* @return PaymentResponseInterface
126+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\PaymentResponseInterface
127127
*/
128128
public function getPayment(): PaymentResponseInterface;
129129

130130
/**
131131
* Details about an order created for this checkout session.
132132
*
133-
* @return OrderConfirmationInterface|null
133+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\OrderConfirmationInterface|null
134134
*/
135135
public function getOrder(): OrderConfirmationInterface|null;
136136
}

generated/Magebit/UcpSpec/Api/Schemas/Shopping/CheckoutUpdateRequestInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ public function getId(): string;
3838
/**
3939
* List of line items being checked out.
4040
*
41-
* @return LineItemUpdateRequestInterface[]
41+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\LineItemUpdateRequestInterface[]
4242
*/
4343
public function getLineItems(): array;
4444

4545
/**
4646
* Representation of the buyer.
4747
*
48-
* @return BuyerInterface|null
48+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\Types\BuyerInterface|null
4949
*/
5050
public function getBuyer(): BuyerInterface|null;
5151

@@ -57,7 +57,7 @@ public function getBuyer(): BuyerInterface|null;
5757
public function getCurrency(): string;
5858

5959
/**
60-
* @return PaymentUpdateRequestInterface
60+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\PaymentUpdateRequestInterface
6161
*/
6262
public function getPayment(): PaymentUpdateRequestInterface;
6363
}

generated/Magebit/UcpSpec/Api/Schemas/Shopping/DiscountAppliedDiscountInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function getPriority(): int|null;
7272
/**
7373
* Breakdown of where this discount was allocated. Sum of allocation amounts equals total amount.
7474
*
75-
* @return DiscountAllocationInterface[]|null
75+
* @return \Magebit\UcpSpec\Api\Schemas\Shopping\DiscountAllocationInterface[]|null
7676
*/
7777
public function getAllocations(): array|null;
7878
}

0 commit comments

Comments
 (0)