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; /** * Datum object lets y..
Decoded Output download
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;
/**
* Datum object lets you override Google Charts' choice for annotations provided for individual data elements
* (such as values displayed with each bar on a bar chart).
*
* @author Christophe Meneses
*/
class Datum
{
/**
* @var Stem
*/
protected $stem;
/**
* It can be either 'line' or 'point'.
*
* @var string
*/
protected $style;
public function __construct()
{
$this->stem = new Stem();
}
public function getStem(): Stem
{
return $this->stem;
}
/**
* @return $this
*/
public function setStyle(string $style)
{
$this->style = $style;
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;
/**
* Datum object lets you override Google Charts' choice for annotations provided for individual data elements
* (such as values displayed with each bar on a bar chart).
*
* @author Christophe Meneses
*/
class Datum
{
/**
* @var Stem
*/
protected $stem;
/**
* It can be either 'line' or 'point'.
*
* @var string
*/
protected $style;
public function __construct()
{
$this->stem = new Stem();
}
public function getStem(): Stem
{
return $this->stem;
}
/**
* @return $this
*/
public function setStyle(string $style)
{
$this->style = $style;
return $this;
}
}
Function Calls
None |
Stats
MD5 | 0132dbaf97f477473eca0e923797460c |
Eval Count | 0 |
Decode Time | 95 ms |