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 namespace CMEN\GoogleChartsBundle\GoogleCharts\Options; /** * @author Christophe ..
Decoded Output download
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;
/**
* @author Christophe Meneses
*/
trait InterpolateNullsTrait
{
/**
* Whether to guess the value of missing points. If true, it will guess the value of any missing data based on
* neighboring points. If false, it will leave a break in the line at the unknown point.
* This is not supported by Area charts with the isStacked: true/'percent'/'relative'/'absolute' option.
*
* Default: false
*
* @var bool
*/
protected $interpolateNulls;
/**
* @return $this
*/
public function setInterpolateNulls(bool $interpolateNulls)
{
$this->interpolateNulls = $interpolateNulls;
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;
/**
* @author Christophe Meneses
*/
trait InterpolateNullsTrait
{
/**
* Whether to guess the value of missing points. If true, it will guess the value of any missing data based on
* neighboring points. If false, it will leave a break in the line at the unknown point.
* This is not supported by Area charts with the isStacked: true/'percent'/'relative'/'absolute' option.
*
* Default: false
*
* @var bool
*/
protected $interpolateNulls;
/**
* @return $this
*/
public function setInterpolateNulls(bool $interpolateNulls)
{
$this->interpolateNulls = $interpolateNulls;
return $this;
}
}
Function Calls
None |
Stats
MD5 | b7435b22f053406add0eac647a625422 |
Eval Count | 0 |
Decode Time | 114 ms |