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 SizeAxis
{
    /**
     * Maximum radius of the largest possible bubble, in pixels.
     *
     * @var int
     */
    protected $maxSize;

    /**
     * The size value (as appears in the chart data) to be mapped to sizeAxis.maxSize. Larger values will be cropped
     * to this value.
     *
     * @var int
     */
    protected $maxValue;

    /**
     * Mininum radius of the smallest possible bubble, in pixels.
     *
     * @var int
     */
    protected $minSize;

    /**
     * The size value (as appears in the chart data) to be mapped to sizeAxis.minSize. Smaller values will be cropped
     * to this value.
     *
     * @var int
     */
    protected $minValue;

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

        return $this;
    }

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

        return $this;
    }

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

        return $this;
    }

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

        return $this;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;

/**
 * @author Christophe Meneses
 */
class SizeAxis
{
    /**
     * Maximum radius of the largest possible bubble, in pixels.
     *
     * @var int
     */
    protected $maxSize;

    /**
     * The size value (as appears in the chart data) to be mapped to sizeAxis.maxSize. Larger values will be cropped
     * to this value.
     *
     * @var int
     */
    protected $maxValue;

    /**
     * Mininum radius of the smallest possible bubble, in pixels.
     *
     * @var int
     */
    protected $minSize;

    /**
     * The size value (as appears in the chart data) to be mapped to sizeAxis.minSize. Smaller values will be cropped
     * to this value.
     *
     * @var int
     */
    protected $minValue;

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

        return $this;
    }

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

        return $this;
    }

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

        return $this;
    }

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

        return $this;
    }
}

Function Calls

None

Variables

None

Stats

MD5 0ede08e66207016045cbfa92be7069d6
Eval Count 0
Decode Time 103 ms