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; /** * Domain object lets ..

Decoded Output download

<?php

namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;

/**
 * Domain object lets you override Google Charts' choice for annotations provided for a domain
 * (the major axis of the chart, such as the X axis on a typical line chart).
 *
 * @author Christophe Meneses
 */
class Domain
{
    /**
     * @var Stem
     */
    protected $stem;

    /**
     * It can be either 'line' or 'point'.
     *
     * @var string
     */
    protected $style;

    public function __construct()
    {
        $this->stem = new Stem();
    }

    public function getStem(): Stem
    {
        return $this->stem;
    }

    /**
     * @return $this
     */
    public function setStyle(string $style)
    {
        $this->style = $style;

        return $this;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;

/**
 * Domain object lets you override Google Charts' choice for annotations provided for a domain
 * (the major axis of the chart, such as the X axis on a typical line chart).
 *
 * @author Christophe Meneses
 */
class Domain
{
    /**
     * @var Stem
     */
    protected $stem;

    /**
     * It can be either 'line' or 'point'.
     *
     * @var string
     */
    protected $style;

    public function __construct()
    {
        $this->stem = new Stem();
    }

    public function getStem(): Stem
    {
        return $this->stem;
    }

    /**
     * @return $this
     */
    public function setStyle(string $style)
    {
        $this->style = $style;

        return $this;
    }
}

Function Calls

None

Variables

None

Stats

MD5 77231e91844ea9ef506e7f5ece68315a
Eval Count 0
Decode Time 91 ms