Total Complexity | 8 |
Total Lines | 88 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
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 |
||
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 |
||
113 | } |
||
114 | |||
115 | |||
116 | |||
117 | } |
||
118 |