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

OutputOffsetEntry.php « Entry « Model « PhpZip « src « zip « nelexa « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94bd15b32bc25ef0efcc88c621375e599bc540b2 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php

namespace PhpZip\Model\Entry;

use PhpZip\Model\ZipEntry;

/**
 * Entry to write to the central directory.
 *
 * @author Ne-Lexa alexey@nelexa.ru
 * @license MIT
 */
class OutputOffsetEntry
{
    /**
     * @var int
     */
    private $offset;
    /**
     * @var ZipEntry
     */
    private $entry;

    /**
     * @param int $pos
     * @param ZipEntry $entry
     */
    public function __construct($pos, ZipEntry $entry)
    {
        $this->offset = $pos;
        $this->entry = $entry;
    }

    /**
     * @return int
     */
    public function getOffset()
    {
        return $this->offset;
    }

    /**
     * @return ZipEntry
     */
    public function getEntry()
    {
        return $this->entry;
    }
}