Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * This helper builds the SandBoxMode object for a /mail/send API call */ name..
Decoded Output download
<?php
/**
* This helper builds the SandBoxMode object for a /mail/send API call
*/
namespace SendGrid\Mail;
use SendGrid\Helper\Assert;
/**
* This class is used to construct a SandBoxMode object for the /mail/send API call
*
* @package SendGrid\Mail
*/
class SandBoxMode implements \JsonSerializable
{
/**
* @var bool Indicates if this setting is enabled
*/
private $enable;
/**
* Optional constructor
*
* @param bool|null $enable Indicates if this setting is enabled
* @throws \SendGrid\Mail\TypeException
*/
public function __construct($enable = null)
{
if (isset($enable)) {
$this->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;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* This helper builds the SandBoxMode object for a /mail/send API call
*/
namespace SendGrid\Mail;
use SendGrid\Helper\Assert;
/**
* This class is used to construct a SandBoxMode object for the /mail/send API call
*
* @package SendGrid\Mail
*/
class SandBoxMode implements \JsonSerializable
{
/**
* @var bool Indicates if this setting is enabled
*/
private $enable;
/**
* Optional constructor
*
* @param bool|null $enable Indicates if this setting is enabled
* @throws \SendGrid\Mail\TypeException
*/
public function __construct($enable = null)
{
if (isset($enable)) {
$this->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;
}
}
Function Calls
None |
Stats
MD5 | 1637e5266f7e11ef7a9e1001adde0bf8 |
Eval Count | 0 |
Decode Time | 90 ms |