for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ittoolspl\Smslabs\Entity;
class SmsSentResponse
{
private $account;
private $smsId;
/**
* SmsSentResponse constructor.
* @param int $account
* @param string $smsId
*/
public function __construct($account, $smsId)
$this->account = $account;
$this->smsId = $smsId;
}
* @return int
public function getAccount()
return $this->account;
* @return string
public function getSmsId()
return $this->smsId;