for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spinen\Ncentral\Type;
use Phpro\SoapClient\Type\RequestInterface;
class PsaReopenCustomTicket implements RequestInterface
{
/**
* @var string
*/
private $username;
private $password;
* @var int
private $psaCustomTicketId;
* Constructor
*
* @var string $username
* @var string $password
* @var int $psaCustomTicketId
public function __construct($username, $password, $psaCustomTicketId)
$this->username = $username;
$this->password = $password;
$this->psaCustomTicketId = $psaCustomTicketId;
}
* @return string
public function getUsername()
return $this->username;
* @param string $username
* @return PsaReopenCustomTicket
public function withUsername($username)
$new = clone $this;
$new->username = $username;
return $new;
public function getPassword()
return $this->password;
* @param string $password
public function withPassword($password)
$new->password = $password;
* @return int
public function getPsaCustomTicketId()
return $this->psaCustomTicketId;
* @param int $psaCustomTicketId
public function withPsaCustomTicketId($psaCustomTicketId)
$new->psaCustomTicketId = $psaCustomTicketId;