Skip to content

Commit 1cdc9c4

Browse files
committed
Revert "Values\Content\Location: Set protected/read-only property as internal"
This reverts commit 44aede1.
1 parent 44aede1 commit 1cdc9c4

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/contracts/Repository/Values/Content/Location.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ abstract class Location extends ValueObject
9090
* Location ID.
9191
*
9292
* @var int
93-
* @internal Read-only property accessed through magic getter.
9493
*/
9594
protected $id;
9695

@@ -111,15 +110,13 @@ abstract class Location extends ValueObject
111110
* sort order.
112111
*
113112
* @var int
114-
* @internal Read-only property accessed through magic getter.
115113
*/
116114
protected $priority;
117115

118116
/**
119117
* Indicates that the Location entity is hidden (explicitly or hidden by content).
120118
*
121119
* @var bool
122-
* @internal Read-only property accessed through magic getter.
123120
*/
124121
protected $hidden;
125122

@@ -128,15 +125,13 @@ abstract class Location extends ValueObject
128125
* or implicitly hidden by its Content or an ancestor Location.
129126
*
130127
* @var bool
131-
* @internal Read-only property accessed through magic getter.
132128
*/
133129
protected $invisible;
134130

135131
/**
136132
* Indicates that the Location entity has been explicitly marked as hidden.
137133
*
138134
* @var bool
139-
* @internal Read-only property accessed through magic getter.
140135
*/
141136
protected $explicitlyHidden;
142137

@@ -146,23 +141,20 @@ abstract class Location extends ValueObject
146141
* A universally unique identifier.
147142
*
148143
* @var string
149-
* @internal Read-only property accessed through magic getter.
150144
*/
151145
protected $remoteId;
152146

153147
/**
154148
* Parent ID.
155149
*
156150
* @var int Location ID.
157-
* @internal Read-only property accessed through magic getter.
158151
*/
159152
protected $parentLocationId;
160153

161154
/**
162155
* The materialized path of the location entry, eg: /1/2/4/23/.
163156
*
164157
* @var string
165-
* @internal Read-only property accessed through magic getter.
166158
*/
167159
protected $pathString;
168160

@@ -173,15 +165,13 @@ abstract class Location extends ValueObject
173165
* Same as {@see Location::$pathString} but as array, e.g.: `['1', '2', '4', '23']`.
174166
*
175167
* @var array <int, string>
176-
* @internal Read-only property accessed through magic getter.
177168
*/
178169
protected array $path;
179170

180171
/**
181172
* Depth location has in the location tree.
182173
*
183174
* @var int
184-
* @internal Read-only property accessed through magic getter.
185175
*/
186176
protected $depth;
187177

@@ -191,7 +181,6 @@ abstract class Location extends ValueObject
191181
* Valid values are found at {@link Location::SORT_FIELD_*}
192182
*
193183
* @var int
194-
* @internal Read-only property accessed through magic getter.
195184
*/
196185
protected $sortField;
197186

@@ -201,7 +190,6 @@ abstract class Location extends ValueObject
201190
* Valid values are {@link Location::SORT_ORDER_*}
202191
*
203192
* @var int
204-
* @internal Read-only property accessed through magic getter.
205193
*/
206194
protected $sortOrder;
207195

0 commit comments

Comments
 (0)