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 PointSizeTrait
{
/**
* Diameter of displayed points in pixels. Use zero to hide all points. You can override values for individual
* series using the series property. If you're using a trendline, the pointSize option will affect the width of
* the trendline unless you override it with the trendlines.n.pointsize option.
*
* Default: 0
*
* @var int
*/
protected $pointSize;
/**
* @return $this
*/
public function setPointSize(int $pointSize)
{
$this->pointSize = $pointSize;
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Options;
/**
* @author Christophe Meneses
*/
trait PointSizeTrait
{
/**
* Diameter of displayed points in pixels. Use zero to hide all points. You can override values for individual
* series using the series property. If you're using a trendline, the pointSize option will affect the width of
* the trendline unless you override it with the trendlines.n.pointsize option.
*
* Default: 0
*
* @var int
*/
protected $pointSize;
/**
* @return $this
*/
public function setPointSize(int $pointSize)
{
$this->pointSize = $pointSize;
return $this;
}
}
Function Calls
| None |
Stats
| MD5 | aaf77e9f5b3498c89acd50c81775849c |
| Eval Count | 0 |
| Decode Time | 116 ms |