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 Bar
{
    /**
     * The width of a group of bars, specified in either of these formats : Pixels (e.g. 50).
     * Percentage of the available width for each group (e.g. '20%'), where '100%' means that groups have no space
     * between them.
     *
     * @var int|string
     */
    protected $groupWidth;

    /**
     * @param int|string $groupWidth
     *
     * @return $this
     */
    public function setGroupWidth($groupWidth)
    {
        $this->groupWidth = $groupWidth;

        return $this;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;

/**
 * @author Christophe Meneses
 */
class Bar
{
    /**
     * The width of a group of bars, specified in either of these formats : Pixels (e.g. 50).
     * Percentage of the available width for each group (e.g. '20%'), where '100%' means that groups have no space
     * between them.
     *
     * @var int|string
     */
    protected $groupWidth;

    /**
     * @param int|string $groupWidth
     *
     * @return $this
     */
    public function setGroupWidth($groupWidth)
    {
        $this->groupWidth = $groupWidth;

        return $this;
    }
}

Function Calls

None

Variables

None

Stats

MD5 cf3e5e6d44fc39e5ca31fd94f906f9b9
Eval Count 0
Decode Time 113 ms