Skip to content

Commit 71aa12f

Browse files
committed
php-doc: use class with namespace.
1 parent 1bac247 commit 71aa12f

10 files changed

+29
-29
lines changed

src/AbstractAopGateway.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ public function sandbox()
331331
/**
332332
* @param array $parameters
333333
*
334-
* @return AopCompletePurchaseRequest
334+
* @return \Omnipay\Alipay\Requests\AopCompletePurchaseRequest
335335
* @throws InvalidRequestException
336336
*/
337337
public function completePurchase(array $parameters = [])
@@ -345,7 +345,7 @@ public function completePurchase(array $parameters = [])
345345
*
346346
* @param array $parameters
347347
*
348-
* @return AopTradeQueryRequest
348+
* @return \Omnipay\Alipay\Requests\AopTradeQueryRequest
349349
*/
350350
public function query(array $parameters = [])
351351
{
@@ -358,7 +358,7 @@ public function query(array $parameters = [])
358358
*
359359
* @param array $parameters
360360
*
361-
* @return AopTradeRefundRequest
361+
* @return \Omnipay\Alipay\Requests\AopTradeRefundRequest
362362
*/
363363
public function refund(array $parameters = [])
364364
{
@@ -371,7 +371,7 @@ public function refund(array $parameters = [])
371371
*
372372
* @param array $parameters
373373
*
374-
* @return AopTradeRefundQueryRequest
374+
* @return \Omnipay\Alipay\Requests\AopTradeRefundQueryRequest
375375
*/
376376
public function refundQuery(array $parameters = [])
377377
{
@@ -384,7 +384,7 @@ public function refundQuery(array $parameters = [])
384384
*
385385
* @param array $parameters
386386
*
387-
* @return AopTradeCloseRequest
387+
* @return \Omnipay\Alipay\Requests\AopTradeCloseRequest
388388
*/
389389
public function close(array $parameters = [])
390390
{
@@ -397,7 +397,7 @@ public function close(array $parameters = [])
397397
*
398398
* @param array $parameters
399399
*
400-
* @return AopTradeCancelRequest
400+
* @return \Omnipay\Alipay\Requests\AopTradeCancelRequest
401401
*/
402402
public function cancel(array $parameters = [])
403403
{
@@ -410,7 +410,7 @@ public function cancel(array $parameters = [])
410410
*
411411
* @param array $parameters
412412
*
413-
* @return AopTransferToAccountRequest
413+
* @return \Omnipay\Alipay\Requests\AopTransferToAccountRequest
414414
*/
415415
public function transfer(array $parameters = [])
416416
{
@@ -423,7 +423,7 @@ public function transfer(array $parameters = [])
423423
*
424424
* @param array $parameters
425425
*
426-
* @return AopTransferToAccountQueryRequest
426+
* @return \Omnipay\Alipay\Requests\AopTransferToAccountQueryRequest
427427
*/
428428
public function transferQuery(array $parameters = [])
429429
{
@@ -436,7 +436,7 @@ public function transferQuery(array $parameters = [])
436436
*
437437
* @param array $parameters
438438
*
439-
* @return AopTradeCancelRequest
439+
* @return \Omnipay\Alipay\Requests\AopTradeCancelRequest
440440
*/
441441
public function settle(array $parameters = [])
442442
{

src/AbstractLegacyGateway.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ public function setAlipaySdk($value)
304304
/**
305305
* @param array $parameters
306306
*
307-
* @return LegacyCompletePurchaseRequest
307+
* @return \Omnipay\Alipay\Requests\LegacyCompletePurchaseRequest
308308
*/
309309
public function completePurchase(array $parameters = [])
310310
{
@@ -315,7 +315,7 @@ public function completePurchase(array $parameters = [])
315315
/**
316316
* @param array $parameters
317317
*
318-
* @return LegacyRefundRequest
318+
* @return \Omnipay\Alipay\Requests\LegacyRefundRequest
319319
*/
320320
public function refund(array $parameters = [])
321321
{
@@ -326,7 +326,7 @@ public function refund(array $parameters = [])
326326
/**
327327
* @param array $parameters
328328
*
329-
* @return LegacyRefundRequest
329+
* @return \Omnipay\Alipay\Requests\LegacyRefundRequest
330330
*/
331331
public function completeRefund(array $parameters = [])
332332
{
@@ -337,7 +337,7 @@ public function completeRefund(array $parameters = [])
337337
/**
338338
* @param array $parameters
339339
*
340-
* @return LegacyQueryRequest
340+
* @return \Omnipay\Alipay\Requests\LegacyQueryRequest
341341
*/
342342
public function query(array $parameters = [])
343343
{

src/AopAppGateway.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function getName()
2626
/**
2727
* @param array $parameters
2828
*
29-
* @return AopTradeAppPayRequest
29+
* @return \Omnipay\Alipay\Requests\AopTradeAppPayRequest
3030
*/
3131
public function purchase(array $parameters = [])
3232
{

src/AopF2FGateway.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function getName()
2727
/**
2828
* @param array $parameters
2929
*
30-
* @return AopTradePayRequest
30+
* @return \Omnipay\Alipay\Requests\AopTradePayRequest
3131
*/
3232
public function capture(array $parameters = [])
3333
{
@@ -38,7 +38,7 @@ public function capture(array $parameters = [])
3838
/**
3939
* @param array $parameters
4040
*
41-
* @return AopTradePreCreateRequest
41+
* @return \Omnipay\Alipay\Requests\AopTradePreCreateRequest
4242
*/
4343
public function purchase(array $parameters = [])
4444
{

src/LegacyWapGateway.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function getName()
2626
/**
2727
* @param array $parameters
2828
*
29-
* @return LegacyWapPurchaseRequest
29+
* @return \Omnipay\Alipay\Requests\LegacyWapPurchaseRequest
3030
*/
3131
public function purchase(array $parameters = [])
3232
{

src/Requests/AopCompletePurchaseRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function getParams()
4242
*
4343
* @param mixed $data The data to send
4444
*
45-
* @return AopCompletePurchaseResponse
45+
* @return \Omnipay\Alipay\Responses\AopCompletePurchaseResponse
4646
*/
4747
public function sendData($data)
4848
{

src/Requests/AopNotifyRequest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public function setPartner($value)
181181
/**
182182
* @param boolean $value
183183
*
184-
* @return AopNotifyRequest
184+
* @return \Omnipay\Alipay\Requests\AopNotifyRequest
185185
*/
186186
public function setVerifyNotifyId($value)
187187
{
@@ -194,7 +194,7 @@ public function setVerifyNotifyId($value)
194194
/**
195195
* @param boolean $sort
196196
*
197-
* @return AopNotifyRequest
197+
* @return \Omnipay\Alipay\Requests\AopNotifyRequest
198198
*/
199199
public function setSort($sort)
200200
{
@@ -207,7 +207,7 @@ public function setSort($sort)
207207
/**
208208
* @param string $encodePolicy
209209
*
210-
* @return AopNotifyRequest
210+
* @return \Omnipay\Alipay\Requests\AopNotifyRequest
211211
*/
212212
public function setEncodePolicy($encodePolicy)
213213
{

src/Requests/AopTradePayRequest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
use Omnipay\Alipay\Responses\AopTradeCancelResponse;
66
use Omnipay\Alipay\Responses\AopTradePayResponse;
77
use Omnipay\Alipay\Responses\AopTradeQueryResponse;
8-
use Omnipay\Common\Exception\InvalidRequestException;
98

109
/**
1110
* Class AopTradePayRequest
@@ -36,8 +35,9 @@ class AopTradePayRequest extends AbstractAopRequest
3635
*
3736
* @param mixed $data The data to send
3837
*
39-
* @return AopTradePayResponse|AopTradeQueryResponse
40-
* @throws InvalidRequestException
38+
* @return \Omnipay\Alipay\Responses\AopTradePayResponse|\Omnipay\Alipay\Responses\AopTradeQueryResponse
39+
* @throws \Psr\Http\Client\Exception\NetworkException
40+
* @throws \Psr\Http\Client\Exception\RequestException
4141
*/
4242
public function sendData($data)
4343
{
@@ -136,7 +136,7 @@ public function validateParams()
136136
/**
137137
* @param boolean $polling
138138
*
139-
* @return AopTradePayRequest
139+
* @return \Omnipay\Alipay\Requests\AopTradePayRequest
140140
*/
141141
public function setPolling($polling)
142142
{
@@ -149,7 +149,7 @@ public function setPolling($polling)
149149
/**
150150
* @param int $pollingWait
151151
*
152-
* @return AopTradePayRequest
152+
* @return \Omnipay\Alipay\Requests\AopTradePayRequest
153153
*/
154154
public function setPollingWait($pollingWait)
155155
{
@@ -162,7 +162,7 @@ public function setPollingWait($pollingWait)
162162
/**
163163
* @param int $pollingAttempts
164164
*
165-
* @return AopTradePayRequest
165+
* @return \Omnipay\Alipay\Requests\AopTradePayRequest
166166
*/
167167
public function setPollingAttempts($pollingAttempts)
168168
{

src/Requests/LegacyCompletePurchaseRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function setParams($value)
8888
/**
8989
* @param boolean $verifyNotifyId
9090
*
91-
* @return LegacyCompletePurchaseRequest
91+
* @return \Omnipay\Alipay\Requests\LegacyCompletePurchaseRequest
9292
*/
9393
public function setVerifyNotifyId($verifyNotifyId)
9494
{

src/Requests/LegacyNotifyRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public function setVerifyNotifyId($verifyNotifyId)
178178
/**
179179
* @param boolean $sort
180180
*
181-
* @return LegacyNotifyRequest
181+
* @return \Omnipay\Alipay\Requests\LegacyNotifyRequest
182182
*/
183183
public function setSort($sort)
184184
{

0 commit comments

Comments
 (0)