/var/www/doncode.com.ua/www/lib/sendgrid/lib/mail
Edit: /var/www/doncode.com.ua/www/lib/sendgrid/lib/mail/SandBoxMode.php (1632B)
setEnable($enable);
}
}
/**
* Update the enable setting on a SandBoxMode object
*
* @param bool $enable Indicates if this setting is enabled
*
* @throws \SendGrid\Mail\TypeException
*/
public function setEnable($enable)
{
Assert::boolean($enable, 'enable');
$this->enable = $enable;
}
/**
* Retrieve the enable setting on a SandBoxMode object
*
* @return bool
*/
public function getEnable()
{
return $this->enable;
}
/**
* Return an array representing a SandBoxMode object for the Twilio SendGrid API
*
* @return null|array
*/
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return array_filter(
[
'enable' => $this->getEnable()
],
function ($value) {
return $value !== null;
}
) ?: null;
}
}