short-play-api/core/extend/PhpZip/Mapper/PositionMapper.php
2023-01-29 10:26:52 +08:00

31 lines
422 B
PHP

<?php
namespace PhpZip\Mapper;
/**
* Maps a given position.
*
* @author Ne-Lexa alexey@nelexa.ru
* @license MIT
*/
class PositionMapper
{
/**
* @param int $position
* @return int
*/
public function map($position)
{
return $position;
}
/**
* @param int $position
* @return int
*/
public function unmap($position)
{
return $position;
}
}