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 OpacityTrait
{
/**
* The opacity, with 0.0 being fully transparent and 1.0 fully opaque.
*
* @var float
*/
protected $opacity;
/**
* @return $this
*/
public function setOpacity(float $opacity)
{
$this->opacity = $opacity;
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;
/**
* @author Christophe Meneses
*/
trait OpacityTrait
{
/**
* The opacity, with 0.0 being fully transparent and 1.0 fully opaque.
*
* @var float
*/
protected $opacity;
/**
* @return $this
*/
public function setOpacity(float $opacity)
{
$this->opacity = $opacity;
return $this;
}
}
Function Calls
None |
Stats
MD5 | 6947188000410b99d333c962e3b2d001 |
Eval Count | 0 |
Decode Time | 96 ms |