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\Charts\Diff; use CMEN\GoogleChartsB..
Decoded Output download
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Charts\Diff;
use CMEN\GoogleChartsBundle\Exception\GoogleChartsException;
use CMEN\GoogleChartsBundle\GoogleCharts\Chart;
use CMEN\GoogleChartsBundle\GoogleCharts\Charts\BarChart;
use CMEN\GoogleChartsBundle\GoogleCharts\Charts\ColumnChart;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\ChartOptionsInterface;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\Diff\DiffColumnChart\DiffColumnChartOptions;
class DiffColumnChart extends ColumnChart implements DiffChart
{
/**
* @var DiffColumnChartOptions
*/
protected ChartOptionsInterface $options;
/**
* @var BarChart|ColumnChart
*/
private $oldChart;
/**
* @var BarChart|ColumnChart
*/
private $newChart;
/**
* @param BarChart|ColumnChart|object $oldChart
* @param BarChart|ColumnChart|object $newChart
*
* @throws GoogleChartsException
*/
public function __construct($oldChart, $newChart)
{
if ((!$oldChart instanceof ColumnChart && !$oldChart instanceof BarChart)
|| (!$newChart instanceof ColumnChart && !$newChart instanceof BarChart)) {
throw new GoogleChartsException('Instance of ColumnChart or BarChart is expected');
}
parent::__construct();
$this->options = new DiffColumnChartOptions();
$this->oldChart = $oldChart;
$this->newChart = $newChart;
}
public function getOptions(): DiffColumnChartOptions
{
return $this->options;
}
/**
* @param DiffColumnChartOptions $options
*/
public function setOptions(ChartOptionsInterface $options): DiffColumnChart
{
$this->options = $options;
return $this;
}
/**
* @return BarChart|ColumnChart
*/
public function getOldChart(): Chart
{
return $this->oldChart;
}
/**
* @return BarChart|ColumnChart
*/
public function getNewChart(): Chart
{
return $this->newChart;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace CMEN\GoogleChartsBundle\GoogleCharts\Charts\Diff;
use CMEN\GoogleChartsBundle\Exception\GoogleChartsException;
use CMEN\GoogleChartsBundle\GoogleCharts\Chart;
use CMEN\GoogleChartsBundle\GoogleCharts\Charts\BarChart;
use CMEN\GoogleChartsBundle\GoogleCharts\Charts\ColumnChart;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\ChartOptionsInterface;
use CMEN\GoogleChartsBundle\GoogleCharts\Options\Diff\DiffColumnChart\DiffColumnChartOptions;
class DiffColumnChart extends ColumnChart implements DiffChart
{
/**
* @var DiffColumnChartOptions
*/
protected ChartOptionsInterface $options;
/**
* @var BarChart|ColumnChart
*/
private $oldChart;
/**
* @var BarChart|ColumnChart
*/
private $newChart;
/**
* @param BarChart|ColumnChart|object $oldChart
* @param BarChart|ColumnChart|object $newChart
*
* @throws GoogleChartsException
*/
public function __construct($oldChart, $newChart)
{
if ((!$oldChart instanceof ColumnChart && !$oldChart instanceof BarChart)
|| (!$newChart instanceof ColumnChart && !$newChart instanceof BarChart)) {
throw new GoogleChartsException('Instance of ColumnChart or BarChart is expected');
}
parent::__construct();
$this->options = new DiffColumnChartOptions();
$this->oldChart = $oldChart;
$this->newChart = $newChart;
}
public function getOptions(): DiffColumnChartOptions
{
return $this->options;
}
/**
* @param DiffColumnChartOptions $options
*/
public function setOptions(ChartOptionsInterface $options): DiffColumnChart
{
$this->options = $options;
return $this;
}
/**
* @return BarChart|ColumnChart
*/
public function getOldChart(): Chart
{
return $this->oldChart;
}
/**
* @return BarChart|ColumnChart
*/
public function getNewChart(): Chart
{
return $this->newChart;
}
}
Function Calls
None |
Stats
MD5 | 8a95209b3f72b872d32a00df4be948f5 |
Eval Count | 0 |
Decode Time | 90 ms |