Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PositionMapper.php « Mapper « PhpZip « src « zip « nelexa « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5d67c857ff2932487fc93640ccd468fe5f0d693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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;
    }
}