Skip to content

Commit

Permalink
Fix Namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
deva7mad committed Nov 6, 2018
1 parent 73154e9 commit bac61a1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/Cybersource.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public function __construct($requester)
// @codeCoverageIgnoreStart
/**
* @param $subscriptionId
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function getSubscriptionStatus($subscriptionId)
{
Expand All @@ -120,7 +120,7 @@ public function getSubscriptionStatus($subscriptionId)
* @param null $startDate
* @param null $merchantReferenceNumber
* @param $currency
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function createSubscription($paymentToken, $productTitle, $amount, $frequency, $autoRenew = true, $startDate = null, $merchantReferenceNumber = null, $currency = null)
{
Expand All @@ -134,7 +134,7 @@ public function createSubscription($paymentToken, $productTitle, $amount, $frequ
* @param string $requestId The request ID received from an AuthReply statement, if applicable.
* @param boolean|null $autoAuthorize Set to false to enable the disableAutoAuth flag to avoid an authorization and simply store the card. The default (null) means to omit the value, which means it'll use the setting on the account. Set to true to force an authorization, whether the account requires it or not.
* @param string|null $recurringSubscriptionInfo specify that this is an on-demand subscription, it should not auto-bill
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/

public function createCardSubscription($requestId = null, $autoAuthorize = null, $recurringSubscriptionInfo = null, $currency = null )
Expand All @@ -147,7 +147,7 @@ public function createCardSubscription($requestId = null, $autoAuthorize = null,
* @param $subscriptionId
* @param $paymentToken
* @param $currency
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function updateSubscription($subscriptionId, $paymentToken, $currency = null)
{
Expand All @@ -158,7 +158,7 @@ public function updateSubscription($subscriptionId, $paymentToken, $currency = n
* @param $subscriptionId
* @param $updateCard
* @param $currency
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function updateCardSubscription($subscriptionId, $updateCard, $currency = null)
{
Expand All @@ -168,7 +168,7 @@ public function updateCardSubscription($subscriptionId, $updateCard, $currency =

/**
* @param $subscriptionId
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function cancelSubscription($subscriptionId)
{
Expand All @@ -178,7 +178,7 @@ public function cancelSubscription($subscriptionId)

/**
* @param $subscriptionId
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function deleteSubscription($subscriptionId)
{
Expand All @@ -189,7 +189,7 @@ public function deleteSubscription($subscriptionId)

/**
* @param $requestId
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function voidTransaction($requestId)
{
Expand All @@ -200,7 +200,7 @@ public function voidTransaction($requestId)
/**
* @param $requestId
* @param $amount
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function captureTransaction($requestId, $amount)
{
Expand All @@ -211,7 +211,7 @@ public function captureTransaction($requestId, $amount)
/**
* @param $amount
* @param $currency
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function chargeCardOnce($amount = null, $currency = null)
{
Expand All @@ -237,7 +237,7 @@ public function chargeCurrentSubscriptionOnce($subscriptionId, $amount = null, $
/**
* @param $amount
* @param $paymentToken
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function chargeOnce($amount, $paymentToken, $currency = null)
{
Expand All @@ -256,7 +256,7 @@ public function createOneTimeChargeRequest($amount, $paymentToken, $currency = n
* @param $transactionId
* @param $currency
* @param $total
* @return \Credibility\LaravelCybersource\models\CybersourceResponse
* @return \JustGeeky\LaravelCybersource\models\CybersourceResponse
*/
public function refund($transactionId, $currency = null, $total)
{
Expand Down

0 comments on commit bac61a1

Please sign in to comment.