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 AreaOpacityTrait
{
    /**
     * The default opacity of the colored area under an area chart series, where 0.0 is fully transparent and 1.0 is
     * fully opaque. To specify opacity for an individual series, set the areaOpacity value in the series property.
     *
     * Default: 0.3
     *
     * @var float
     */
    protected $areaOpacity;

    /**
     * @return $this
     */
    public function setAreaOpacity(float $areaOpacity)
    {
        $this->areaOpacity = $areaOpacity;

        return $this;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;

/**
 * @author Christophe Meneses
 */
trait AreaOpacityTrait
{
    /**
     * The default opacity of the colored area under an area chart series, where 0.0 is fully transparent and 1.0 is
     * fully opaque. To specify opacity for an individual series, set the areaOpacity value in the series property.
     *
     * Default: 0.3
     *
     * @var float
     */
    protected $areaOpacity;

    /**
     * @return $this
     */
    public function setAreaOpacity(float $areaOpacity)
    {
        $this->areaOpacity = $areaOpacity;

        return $this;
    }
}

Function Calls

None

Variables

None

Stats

MD5 c9fffb4e55a16ce9304f6e943e4c977e
Eval Count 0
Decode Time 107 ms