Passed
Pull Request — master (#123)
by
unknown
08:11 queued 03:22
created

PageSelectForm::getRecordId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
/**
4
 * (c) Kitodo. Key to digital objects e.V. <[email protected]>
5
 *
6
 * This file is part of the Kitodo and TYPO3 projects.
7
 *
8
 * @license GNU General Public License version 3 or later.
9
 * For the full copyright and license information, please read the
10
 * LICENSE.txt file that was distributed with this source code.
11
 */
12
13
namespace Kitodo\Dlf\Domain\Model;
14
15
use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
16
17
/**
18
 * (Basket Plugin) A basket that is bound to a frontend session.
19
 *
20
 * @package TYPO3
21
 * @subpackage dlf
22
 *
23
 * @access public
24
 */
25
class PageSelectForm extends AbstractEntity
26
{
27
    /**
28
     * @access protected
29
     * @var integer
30
     */
31
    protected $id;
32
33
    /**
34
     * @access protected
35
     * @var string
36
     */
37
    protected $recordId;
38
39
    /**
40
     * @access protected
41
     * @var string
42
     */
43
    protected $double;
44
45
    /**
46
     * @access protected
47
     * @var integer
48
     */
49
    protected $page;
50
51
    /**
52
     * @return int
53
     */
54
    public function getId(): int
55
    {
56
        return $this->id;
57
    }
58
59
    /**
60
     * @param int $id
61
     */
62
    public function setId(int $id): void
63
    {
64
        $this->id = $id;
65
    }
66
67
    /**
68
     * @return string
69
     */
70
    public function getRecordId(): string
71
    {
72
        return $this->recordId;
73
    }
74
75
    /**
76
     * @param string $recordId
77
     */
78
    public function setRecordId(string $recordId): void
79
    {
80
        $this->recordId = $recordId;
81
    }
82
83
    /**
84
     * @return string
85
     */
86
    public function getDouble(): string
87
    {
88
        return $this->double;
89
    }
90
91
    /**
92
     * @param string $double
93
     */
94
    public function setDouble(string $double): void
95
    {
96
        $this->double = $double;
97
    }
98
99
    /**
100
     * @return int
101
     */
102
    public function getPage(): int
103
    {
104
        return $this->page;
105
    }
106
107
    /**
108
     * @param int $page
109
     */
110
    public function setPage(int $page): void
111
    {
112
        $this->page = $page;
113
    }
114
115
116
117
}
118