for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rezahmady\Smsir\Responses;
class SentMessage
{
/**
* @var int
*/
public $id;
* @var string
public $mobileNumber;
public function __construct(int $id, string $mobileNumber)
$this->id = $id;
$this->mobileNumber = $mobileNumber;
}