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\SankeyDiagram; use CMEN\Goo..

Decoded Output download

<?php

namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\SankeyDiagram;

use CMEN\GoogleChartsBundle\GoogleCharts\Options\ChartOptions;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\MediumTooltip;

/**
 * @author Christophe Meneses
 */
class SankeyDiagramOptions extends ChartOptions
{
    /**
     * @var Sankey
     */
    protected $sankey;

    /**
     * @var MediumTooltip
     */
    protected $tooltip;

    public function __construct()
    {
        parent::__construct();

        $this->sankey = new Sankey();
        $this->tooltip = new MediumTooltip();
    }

    public function getSankey(): Sankey
    {
        return $this->sankey;
    }

    public function getTooltip(): MediumTooltip
    {
        return $this->tooltip;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace CMEN\GoogleChartsBundle\GoogleCharts\Options\SankeyDiagram;

use CMEN\GoogleChartsBundle\GoogleCharts\Options\ChartOptions;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\MediumTooltip;

/**
 * @author Christophe Meneses
 */
class SankeyDiagramOptions extends ChartOptions
{
    /**
     * @var Sankey
     */
    protected $sankey;

    /**
     * @var MediumTooltip
     */
    protected $tooltip;

    public function __construct()
    {
        parent::__construct();

        $this->sankey = new Sankey();
        $this->tooltip = new MediumTooltip();
    }

    public function getSankey(): Sankey
    {
        return $this->sankey;
    }

    public function getTooltip(): MediumTooltip
    {
        return $this->tooltip;
    }
}

Function Calls

None

Variables

None

Stats

MD5 c24620a6527db952e7a60cc0d76b1ba8
Eval Count 0
Decode Time 88 ms