Skip to content

Commit 4271400

Browse files
committed
fix phpdocs properly
1 parent 585bb49 commit 4271400

7 files changed

+8
-8
lines changed

src/Message/ClientTokenResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Omnipay\Common\Message\RequestInterface;
77

88
/**
9-
* Response
9+
* ClientTokenResponse
1010
*/
1111
class ClientTokenResponse extends AbstractResponse
1212
{

src/Message/CreateCustomerRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Authorize Request
88
*
9-
* @method CreateCustomerRequest send()
9+
* @method CustomerResponse send()
1010
*/
1111
class CreateCustomerRequest extends AbstractRequest
1212
{
@@ -19,7 +19,7 @@ public function getData()
1919
* Send the request with specified data
2020
*
2121
* @param mixed $data The data to send
22-
* @return ResponseInterface
22+
* @return CustomerResponse
2323
*/
2424
public function sendData($data)
2525
{

src/Message/CreateMerchantAccountRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Merchant account Request
88
*
9-
* @method CreateCustomerRequest send()
9+
* @method Response send()
1010
*/
1111
class CreateMerchantAccountRequest extends AbstractMerchantAccountRequest
1212
{

src/Message/CustomerResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Omnipay\Common\Message\RequestInterface;
66

77
/**
8-
* Response
8+
* CustomerResponse
99
*/
1010
class CustomerResponse extends Response
1111
{

src/Message/DeleteCustomerRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Authorize Request
88
*
9-
* @method DeleteCustomerRequest send()
9+
* @method Response send()
1010
*/
1111
class DeleteCustomerRequest extends AbstractRequest
1212
{

src/Message/UpdateCustomerRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Authorize Request
88
*
9-
* @method UpdateCustomerRequest send()
9+
* @method CustomerResponse send()
1010
*/
1111
class UpdateCustomerRequest extends AbstractRequest
1212
{

src/Message/UpdateMerchantAccountRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Authorize Request
88
*
9-
* @method UpdateMerchantAccountRequest send()
9+
* @method Response send()
1010
*/
1111
class UpdateMerchantAccountRequest extends AbstractMerchantAccountRequest
1212
{

0 commit comments

Comments
 (0)