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 TaskResumeMonitoring implements RequestInterface
{
/**
* @var string
*/
private $username;
private $password;
* @var int
private $taskIDList;
* Constructor
*
* @var string $username
* @var string $password
* @var int $taskIDList
public function __construct($username, $password, $taskIDList)
$this->username = $username;
$this->password = $password;
$this->taskIDList = $taskIDList;
}
* @return string
public function getUsername()
return $this->username;
* @param string $username
* @return TaskResumeMonitoring
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 getTaskIDList()
return $this->taskIDList;
* @param int $taskIDList
public function withTaskIDList($taskIDList)
$new->taskIDList = $taskIDList;