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 EnableInteractivityTrait
{
/**
* Whether the chart throws user-based events or reacts to user interaction. If false, the chart will not throw
* 'select' or other interaction-based events (but will throw ready or error events), and will not display
* hovertext or otherwise change depending on user input.
*
* Default: true
*
* @var bool
*/
protected $enableInteractivity;
/**
* @return $this
*/
public function setEnableInteractivity(bool $enableInteractivity)
{
$this->enableInteractivity = $enableInteractivity;
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;
/**
* @author Christophe Meneses
*/
trait EnableInteractivityTrait
{
/**
* Whether the chart throws user-based events or reacts to user interaction. If false, the chart will not throw
* 'select' or other interaction-based events (but will throw ready or error events), and will not display
* hovertext or otherwise change depending on user input.
*
* Default: true
*
* @var bool
*/
protected $enableInteractivity;
/**
* @return $this
*/
public function setEnableInteractivity(bool $enableInteractivity)
{
$this->enableInteractivity = $enableInteractivity;
return $this;
}
}
Function Calls
None |
Stats
MD5 | 0cf36000ac29f271d13d296d8278b66a |
Eval Count | 0 |
Decode Time | 121 ms |