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 MinorGridlines
{
use ColorTrait;
/**
* The number of horizontal minor gridlines between two regular gridlines.
*
* @var int
*/
protected $count;
/**
* @var Units
*/
protected $units;
public function __construct()
{
$this->units = new Units();
}
public function getUnits(): Units
{
return $this->units;
}
/**
* @return $this
*/
public function setCount(int $count)
{
$this->count = $count;
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;
/**
* @author Christophe Meneses
*/
class MinorGridlines
{
use ColorTrait;
/**
* The number of horizontal minor gridlines between two regular gridlines.
*
* @var int
*/
protected $count;
/**
* @var Units
*/
protected $units;
public function __construct()
{
$this->units = new Units();
}
public function getUnits(): Units
{
return $this->units;
}
/**
* @return $this
*/
public function setCount(int $count)
{
$this->count = $count;
return $this;
}
}
Function Calls
None |
Stats
MD5 | c9cddbb7d57e382b0dbf6588c9a8e9e6 |
Eval Count | 0 |
Decode Time | 84 ms |