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
 */
class AdvancedLegend extends Legend
{
    /**
     * Maximum number of lines in the legend. Set this to a number greater than one to add lines to your legend.
     * Note: The exact logic used to determine the actual number of lines rendered is still in flux.
     * This option currently works only when legend.position is 'top'.
     *
     * @var int
     */
    protected $maxLines;

    /**
     * @return $this
     */
    public function setMaxLines(int $maxLines)
    {
        $this->maxLines = $maxLines;

        return $this;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;

/**
 * @author Christophe Meneses
 */
class AdvancedLegend extends Legend
{
    /**
     * Maximum number of lines in the legend. Set this to a number greater than one to add lines to your legend.
     * Note: The exact logic used to determine the actual number of lines rendered is still in flux.
     * This option currently works only when legend.position is 'top'.
     *
     * @var int
     */
    protected $maxLines;

    /**
     * @return $this
     */
    public function setMaxLines(int $maxLines)
    {
        $this->maxLines = $maxLines;

        return $this;
    }
}

Function Calls

None

Variables

None

Stats

MD5 00d31883a612ef281151008484b37f17
Eval Count 0
Decode Time 105 ms