* @license MIT */ declare(strict_types=1); namespace BitBadger\PDODocument\Mapper; /** * A mapper that returns the associative array from the database * * @implements Mapper> */ class ArrayMapper implements Mapper { /** * @inheritDoc * @return array The array given as the parameter */ public function map(array $result): array { return $result; } }