set argument types
This commit is contained in:
parent
201b01db4c
commit
be873efb32
@ -20,12 +20,12 @@ use MathieuViossat\Util\ArrayToTextTable;
|
|||||||
class Pretty implements RendererInterface
|
class Pretty implements RendererInterface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param $rows
|
* @param iterable $rows
|
||||||
* @param $fieldNames
|
* @param iterable $fieldNames
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function getContent($rows, $fieldNames): string
|
public function getContent(iterable $rows, iterable $fieldNames): string
|
||||||
{
|
{
|
||||||
$renderer = $this->getArrayToTextTableInstance($rows);
|
$renderer = $this->getArrayToTextTableInstance($rows);
|
||||||
return $renderer->getTable();
|
return $renderer->getTable();
|
||||||
|
@ -18,12 +18,12 @@ namespace D3\DataWizard\Application\Model\ExportRenderer;
|
|||||||
interface RendererInterface
|
interface RendererInterface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @param $rows
|
* @param iterable $rows
|
||||||
* @param $fieldNames
|
* @param iterable $fieldNames
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function getContent($rows, $fieldNames): string;
|
public function getContent(iterable $rows, iterable $fieldNames): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
|
@ -30,6 +30,7 @@ use FormManager\Inputs\Number;
|
|||||||
use FormManager\Inputs\Radio;
|
use FormManager\Inputs\Radio;
|
||||||
use OxidEsales\Eshop\Core\Database\Adapter\Doctrine\Database;
|
use OxidEsales\Eshop\Core\Database\Adapter\Doctrine\Database;
|
||||||
use OxidEsales\Eshop\Core\Exception\StandardException;
|
use OxidEsales\Eshop\Core\Exception\StandardException;
|
||||||
|
use OxidEsales\Eshop\Core\Registry;
|
||||||
use PHPUnit\Framework\MockObject\MockObject;
|
use PHPUnit\Framework\MockObject\MockObject;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user