Add CasesPerAccount and CaseAccountDateEntered Statistics

This commit is contained in:
j.anderson 2020-11-09 13:34:13 +00:00 committed by Dillon-Brown
parent 6ffd3dfe5a
commit 06a9cb9742
4 changed files with 332 additions and 0 deletions

View file

@ -0,0 +1,37 @@
<?php
namespace Mock\Core\Legacy\Statistics;
use AcceptanceTester;
use App\Legacy\Statistics\CasesPerAccount;
use App\Tests\_mock\Helpers\core\legacy\Data\DBQueryResultsMocking;
class CasesPerAccountMock extends CasesPerAccount
{
use DBQueryResultsMocking;
/**
* @inheritDoc
*/
public function getQueries(string $parentModule, string $parentId, string $subpanel): array
{
return [
[
'select' => '',
'where' => '',
]
];
}
/**
* @inheritDoc
*/
public function fetchRow(string $query): array
{
return $this->getMockQueryResults();
}
protected function startLegacyApp(): void
{
}
}