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
 */
trait SelectionModeTrait
{
    /**
     * When selectionMode is 'multiple', users may select multiple data points.
     *
     * Default: 'single'
     *
     * @var string
     */
    protected $selectionMode;

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

        return $this;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;

/**
 * @author Christophe Meneses
 */
trait SelectionModeTrait
{
    /**
     * When selectionMode is 'multiple', users may select multiple data points.
     *
     * Default: 'single'
     *
     * @var string
     */
    protected $selectionMode;

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

        return $this;
    }
}

Function Calls

None

Variables

None

Stats

MD5 0bcf47bcbbb54bdb57617b77394c5849
Eval Count 0
Decode Time 109 ms