Skip to content

Commit

Permalink
fix return $this
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikzogg committed Jun 21, 2013
1 parent 6330046 commit d8f94a4
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions src/Payment/Saferpay/Data/PayInitParameterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ interface PayInitParameterInterface

/**
* @param string $accountid
* @return string
* @return $this
*/
public function setAccountid($accountid);

Expand All @@ -229,7 +229,7 @@ public function getAccountid();

/**
* @param string $amount
* @return string
* @return $this
*/
public function setAmount($amount);

Expand All @@ -240,7 +240,7 @@ public function getAmount();

/**
* @param string $currency
* @return string
* @return $this
*/
public function setCurrency($currency);

Expand All @@ -251,7 +251,7 @@ public function getCurrency();

/**
* @param string $description
* @return string
* @return $this
*/
public function setDescription($description);

Expand All @@ -262,7 +262,7 @@ public function getDescription();

/**
* @param string $orderid
* @return string
* @return $this
*/
public function setOrderid($orderid);

Expand All @@ -273,7 +273,7 @@ public function getOrderid();

/**
* @param string $vtconfig
* @return string
* @return $this
*/
public function setVtconfig($vtconfig);

Expand All @@ -284,7 +284,7 @@ public function getVtconfig();

/**
* @param string $successlink
* @return string
* @return $this
*/
public function setSuccesslink($successlink);

Expand All @@ -295,7 +295,7 @@ public function getSuccesslink();

/**
* @param string $faillink
* @return string
* @return $this
*/
public function setFaillink($faillink);

Expand All @@ -306,7 +306,7 @@ public function getFaillink();

/**
* @param string $backlink
* @return string
* @return $this
*/
public function setBacklink($backlink);

Expand All @@ -317,7 +317,7 @@ public function getBacklink();

/**
* @param string $notifyurl
* @return string
* @return $this
*/
public function setNotifyurl($notifyurl);

Expand All @@ -328,7 +328,7 @@ public function getNotifyurl();

/**
* @param string $autoclose
* @return string
* @return $this
*/
public function setAutoclose($autoclose);

Expand All @@ -339,7 +339,7 @@ public function getAutoclose();

/**
* @param string $ccname
* @return string
* @return $this
*/
public function setCcname($ccname);

Expand All @@ -350,7 +350,7 @@ public function getCcname();

/**
* @param string $notifyaddress
* @return string
* @return $this
*/
public function setNotifyaddress($notifyaddress);

Expand All @@ -361,7 +361,7 @@ public function getNotifyaddress();

/**
* @param string $usernotify
* @return string
* @return $this
*/
public function setUsernotify($usernotify);

Expand All @@ -372,7 +372,7 @@ public function getUsernotify();

/**
* @param string $langid
* @return string
* @return $this
*/
public function setLangid($langid);

Expand All @@ -383,7 +383,7 @@ public function getLangid();

/**
* @param string $showlanguages
* @return string
* @return $this
*/
public function setShowlanguages($showlanguages);

Expand All @@ -394,7 +394,7 @@ public function getShowlanguages();

/**
* @param string $paymentmethods
* @return string
* @return $this
*/
public function setPaymentmethods($paymentmethods);

Expand All @@ -405,7 +405,7 @@ public function getPaymentmethods();

/**
* @param string $duration
* @return string
* @return $this
*/
public function setDuration($duration);

Expand All @@ -416,7 +416,7 @@ public function getDuration();

/**
* @param string $cardrefid
* @return string
* @return $this
*/
public function setCardrefid($cardrefid);

Expand All @@ -427,7 +427,7 @@ public function getCardrefid();

/**
* @param string $delivery
* @return string
* @return $this
*/
public function setDelivery($delivery);

Expand All @@ -438,7 +438,7 @@ public function getDelivery();

/**
* @param string $appearance
* @return string
* @return $this
*/
public function setAppearance($appearance);

Expand All @@ -449,7 +449,7 @@ public function getAppearance();

/**
* @param string $address
* @return string
* @return $this
*/
public function setAddress($address);

Expand All @@ -460,7 +460,7 @@ public function getAddress();

/**
* @param string $company
* @return string
* @return $this
*/
public function setCompany($company);

Expand All @@ -471,7 +471,7 @@ public function getCompany();

/**
* @param string $gender
* @return string
* @return $this
*/
public function setGender($gender);

Expand All @@ -482,7 +482,7 @@ public function getGender();

/**
* @param string $firstname
* @return string
* @return $this
*/
public function setFirstname($firstname);

Expand All @@ -493,7 +493,7 @@ public function getFirstname();

/**
* @param string $lastname
* @return string
* @return $this
*/
public function setLastname($lastname);

Expand All @@ -504,7 +504,7 @@ public function getLastname();

/**
* @param string $street
* @return string
* @return $this
*/
public function setStreet($street);

Expand All @@ -515,7 +515,7 @@ public function getStreet();

/**
* @param string $zip
* @return string
* @return $this
*/
public function setZip($zip);

Expand All @@ -526,7 +526,7 @@ public function getZip();

/**
* @param string $city
* @return string
* @return $this
*/
public function setCity($city);

Expand All @@ -537,7 +537,7 @@ public function getCity();

/**
* @param string $country
* @return string
* @return $this
*/
public function setCountry($country);

Expand All @@ -548,7 +548,7 @@ public function getCountry();

/**
* @param string $email
* @return string
* @return $this
*/
public function setEmail($email);

Expand All @@ -559,7 +559,7 @@ public function getEmail();

/**
* @param string $phone
* @return string
* @return $this
*/
public function setPhone($phone);

Expand Down

0 comments on commit d8f94a4

Please sign in to comment.