Skip to content

Commit 301f680

Browse files
committed
Cleanup all the @see's
1 parent 8b9f038 commit 301f680

17 files changed

+4
-34
lines changed

src/Common/AbstractGateway.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
*
4141
* For further code examples see the *omnipay-example* repository on github.
4242
*
43-
* @see GatewayInterface
4443
*/
4544
abstract class AbstractGateway implements GatewayInterface
4645
{
@@ -290,7 +289,6 @@ public function supportsUpdateCard()
290289
* $myRequest = $gw->myRequest($someParameters);
291290
* </code>
292291
*
293-
* @see \Omnipay\Common\Message\AbstractRequest
294292
* @param string $class The request class name
295293
* @param array $parameters
296294
* @return \Omnipay\Common\Message\AbstractRequest

src/Common/CreditCard.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ public function __construct($parameters = null)
151151
* Note: The fact that this class knows about a particular card brand does not imply
152152
* that your gateway supports it.
153153
*
154-
* @see self::$supported_cards
155154
* @return array
156155
*/
157156
public function getSupportedBrands()

src/Common/GatewayFactory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
* $gateway = Omnipay::create('ExpressGateway');
2727
* </code>
2828
*
29-
* @see Omnipay\Omnipay
3029
*/
3130
class GatewayFactory
3231
{

src/Common/GatewayInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
* This interface class defines the standard functions that any
1212
* Omnipay gateway needs to define.
1313
*
14-
* @see AbstractGateway
1514
*
1615
* @method \Omnipay\Common\Message\NotificationInterface acceptNotification(array $options = array()) (Optional method)
1716
* Receive and handle an instant payment notification (IPN)

src/Common/Issuer.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,14 @@ class Issuer
2929

3030
/**
3131
* The ID of a payment method that the issuer belongs to.
32-
*
33-
* @see PaymentMethod
34-
*
32+
**
3533
* @var string
3634
*/
3735
protected $paymentMethod;
3836

3937
/**
4038
* Create a new Issuer
4139
*
42-
* @see PaymentMethod
43-
*
4440
* @param string $id The identifier of this issuer
4541
* @param string $name The name of this issuer
4642
* @param string|null $paymentMethod The ID of a payment method this issuer belongs to
@@ -75,8 +71,6 @@ public function getName()
7571
/**
7672
* The ID of a payment method this issuer belongs to
7773
*
78-
* @see PaymentMethod
79-
*
8074
* @return string
8175
*/
8276
public function getPaymentMethod()

src/Common/Item.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*
1313
* This class defines a single cart item in the Omnipay system.
1414
*
15-
* @see ItemInterface
1615
*/
1716
class Item implements ItemInterface
1817
{

src/Common/ItemBag.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,12 @@
1111
* This class defines a bag (multi element set or array) of single cart items
1212
* in the Omnipay system.
1313
*
14-
* @see Item
1514
*/
1615
class ItemBag implements \IteratorAggregate, \Countable
1716
{
1817
/**
1918
* Item storage
2019
*
21-
* @see Item
2220
*
2321
* @var array
2422
*/
@@ -37,7 +35,6 @@ public function __construct(array $items = array())
3735
/**
3836
* Return all the items
3937
*
40-
* @see Item
4138
*
4239
* @return array An array of items
4340
*/
@@ -49,7 +46,6 @@ public function all()
4946
/**
5047
* Replace the contents of this bag with the specified items
5148
*
52-
* @see Item
5349
*
5450
* @param array $items An array of items
5551
*/
@@ -65,7 +61,6 @@ public function replace(array $items = array())
6561
/**
6662
* Add an item to the bag
6763
*
68-
* @see Item
6964
*
7065
* @param ItemInterface|array $item An existing item, or associative array of item parameters
7166
*/

src/Common/Message/AbstractRequest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@
6262
* // now do something with the $myResponse object, test for success, etc.
6363
* </code>
6464
*
65-
* @see RequestInterface
66-
* @see AbstractResponse
6765
*/
6866
abstract class AbstractRequest implements RequestInterface
6967
{

src/Common/Message/AbstractResponse.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
* // now do something with the $myResponse object, test for success, etc.
2727
* </code>
2828
*
29-
* @see ResponseInterface
3029
*/
3130
abstract class AbstractResponse implements ResponseInterface
3231
{

src/Common/Message/FetchIssuersResponseInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* This happens when the gateway needs the customer to choose a
1616
* card issuer.
1717
*
18-
* @see ResponseInterface
19-
* @see Omnipay\Common\Issuer
2018
*/
2119
interface FetchIssuersResponseInterface extends ResponseInterface
2220
{

0 commit comments

Comments
 (0)