for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Rezahmady\Smsir\Responses;
class SMSLinesResponse extends BaseResponse
{
/**
* @var SMSLine[]
*/
public $SMSLines;
public function __construct(bool $isSuccessful, string $message, array $SMSLines)
$this->isSuccessful = $isSuccessful;
$this->message = $message;
$this->SMSLines = $SMSLines;
}