Remove Leads Subpanel File

This commit is contained in:
Jack Anderson 2021-01-20 09:07:47 +00:00 committed by Dillon-Brown
parent 9881af09e2
commit 491a6dac41

View file

@ -1,39 +0,0 @@
<?php
namespace App\Legacy\Statistics;
use App\Entity\Statistic;
use App\Service\StatisticsProviderInterface;
class SubpanelLeadsTotal implements StatisticsProviderInterface
{
public const KEY = 'leads';
/**
* @inheritDoc
*/
public function getKey(): string
{
return self::KEY;
}
/**
* @inheritDoc
*/
public function getData(array $param): Statistic
{
$statistic = new Statistic();
$statistic->setId(self::KEY);
$statistic->setData([
'value' => '4'
]);
$statistic->setMetadata([
'type' => 'single-value-statistic',
'dataType' => 'int',
]);
return $statistic;
}
}