Просмотр файла vendor/nelexa/zip/src/PhpZip/Mapper/PositionMapper.php

Размер файла: 422B
<?php

namespace PhpZip\Mapper;

/**
 * Maps a given position.
 *
 * @author Ne-Lexa [email protected]
 * @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;
    }
}