Skip to content

Commit

Permalink
fix phpdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikzogg committed Jun 21, 2013
1 parent b85e9f2 commit b52e924
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 93 deletions.
24 changes: 12 additions & 12 deletions src/Payment/Saferpay/Data/PayCompleteParameterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,46 +36,46 @@ interface PayCompleteParameterInterface
const ACTION_CANCEL = 'Cancel';

/**
* @param $id
* @return mixed
* @param string $id
* @return $this
*/
public function setId($id);

/**
* @return mixed
* @return string
*/
public function getId();

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

/**
* @return mixed
* @return string
*/
public function getAmount();

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

/**
* @return mixed
* @return string
*/
public function getAccountid();

/**
* @param $action
* @return mixed
* @param string $action
* @return $this
*/
public function setAction($action);

/**
* @return mixed
* @return string
*/
public function getAction();
}
30 changes: 15 additions & 15 deletions src/Payment/Saferpay/Data/PayCompleteResponseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,57 +31,57 @@ interface PayCompleteResponseInterface
const AUTHMESSAGE = 'ans[..30]';

/**
* @param $msgtype
* @return mixed
* @param string $msgtype
* @return $this
*/
public function setMsgtype($msgtype);

/**
* @return mixed
* @return string
*/
public function getMsgtype();

/**
* @param $id
* @return mixed
* @param string $id
* @return $this
*/
public function setId($id);

/**
* @return mixed
* @return string
*/
public function getId();

/**
* @param $result
* @return mixed
* @param string $result
* @return $this
*/
public function setResult($result);

/**
* @return mixed
* @return string
*/
public function getResult();

/**
* @param $message
* @return mixed
* @param string $message
* @return $this
*/
public function setMessage($message);

/**
* @return mixed
* @return string
*/
public function getMessage();

/**
* @param $authmessage
* @return mixed
* @param string $authmessage
* @return $this
*/
public function setAuthmessage($authmessage);

/**
* @return mixed
* @return string
*/
public function getAuthmessage();
}
Loading

0 comments on commit b52e924

Please sign in to comment.