Files
pdo-document/src/Mapper/ArrayMapper.php
T
2024-06-08 23:58:45 +00:00

18 lines
303 B
PHP

<?php declare(strict_types=1);
namespace BitBadger\PDODocument\Mapper;
/**
* A mapper that returns the associative array from the database
*/
class ArrayMapper implements Mapper
{
/**
* @inheritDoc
*/
public function map(array $result): array
{
return $result;
}
}