for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ThreePlCentral;
use DateTime;
use ThreePlCentral\Order\OrderRepository;
class ThreePlCentral
{
private $id;
private $customerId;
private $facilityId;
private $login;
private $password;
public function __construct($id, $customerId, $facilityId, $login, $password)
$this->id = $id;
$this->customerId = $customerId;
$this->facilityId = $facilityId;
$this->login = $login;
$this->password = $password;
}
public function findOrders(DateTime $beginDate, DateTime $endDate)
return OrderRepository::findOrders($this, $beginDate, $endDate);
public function getId()
return $this->id;
public function setId($id)
public function getCustomerId()
return $this->customerId;
public function setCustomerId($customerId)
public function getFacilityId()
return $this->facilityId;
public function setFacilityId($facilityId)
public function getLogin()
return $this->login;
public function setLogin($login)
public function getPassword()
return $this->password;
public function setPassword($password)