Skip to content

Commit

Permalink
stan
Browse files Browse the repository at this point in the history
  • Loading branch information
PSebou committed Nov 27, 2023
1 parent 078fb6a commit f8644b2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Shop/Shop.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,47 +49,47 @@ public function __construct($id, $returnUrl, $cancelUrl)
}

/**
* @return mixed
* @return int
*/
public function getId()
{
return $this->id;
}

/**
* @param mixed $id
* @param int $id
*/
public function setId($id)
{
$this->id = $id;
}

/**
* @return mixed
* @return string
*/
public function getReturnUrl()
{
return $this->returnUrl;
}

/**
* @param mixed $returnUrl
* @param string $returnUrl
*/
public function setReturnUrl($returnUrl)
{
$this->returnUrl = $returnUrl;
}

/**
* @return mixed
* @return string
*/
public function getCancelUrl()
{
return $this->cancelUrl;
}

/**
* @param mixed $cancelUrl
* @param string $cancelUrl
*/
public function setCancelUrl($cancelUrl)
{
Expand Down

0 comments on commit f8644b2

Please sign in to comment.