You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Describes a bit more `getProperties`
- Details `getProperties` param type and returned type
- Hides link to internal function
- Uses `@internal` as a short for "@ignore This method is for internal use"
- Fixes internal links
@@ -62,7 +63,7 @@ protected function getProperties($dynamicProperties = [])
62
63
/**
63
64
* Magic set function handling writes to non public properties.
64
65
*
65
-
* @ignore This method is for internal use
66
+
* @internal
66
67
*
67
68
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\PropertyNotFoundException When property does not exist
68
69
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\PropertyReadOnlyException When property is readonly (protected)
@@ -83,7 +84,7 @@ public function __set($property, $value)
83
84
*
84
85
* Returns value for all readonly (protected) properties.
85
86
*
86
-
* @ignore This method is for internal use
87
+
* @internal
87
88
*
88
89
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\PropertyNotFoundException exception on all reads to undefined properties so typos are not silently accepted.
89
90
*
@@ -104,7 +105,7 @@ public function __get($property)
104
105
*
105
106
* Returns true for all (public/)protected/private properties.
106
107
*
107
-
* @ignore This method is for internal use
108
+
* @internal
108
109
*
109
110
* @param string $property Name of the property
110
111
*
@@ -118,12 +119,12 @@ public function __isset($property)
118
119
/**
119
120
* Magic unset function handling unset() to non public properties.
120
121
*
121
-
* @ignore This method is for internal use
122
+
* @internal
122
123
*
123
124
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\PropertyNotFoundException exception on all writes to undefined properties so typos are not silently accepted and
124
125
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\PropertyReadOnlyException exception on readonly (protected) properties.
125
126
*
126
-
* @uses ::__set()
127
+
* @uses ValueObject::__set()
127
128
*
128
129
* @param string $property Name of the property
129
130
*
@@ -144,7 +145,7 @@ public function __unset($property)
144
145
* var_export() generates code, that calls this method when it
145
146
* is parsed with PHP.
146
147
*
147
-
* @ignore This method is for internal use
148
+
* @internal
148
149
*
149
150
* @param mixed[] $array
150
151
*
@@ -158,11 +159,11 @@ public static function __set_state(array $array)
158
159
/**
159
160
* Internal function for Legacy template engine compatibility to get property value.
160
161
*
161
-
* @ignore This method is for internal use
162
+
* @internal
162
163
*
163
164
* @deprecated Since 5.0, available purely for legacy eZTemplate compatibility
164
165
*
165
-
* @uses ::__get()
166
+
* @uses ValueObject::__get()
166
167
*
167
168
* @param string $property
168
169
*
@@ -176,11 +177,12 @@ final public function attribute($property)
176
177
/**
177
178
* Internal function for Legacy template engine compatibility to get properties.
178
179
*
179
-
* @ignore This method is for internal use
180
+
* @internal
180
181
*
181
182
* @deprecated Since 5.0, available purely for legacy eZTemplate compatibility
182
183
*
183
-
* @uses ::__isset()
184
+
* @uses ValueObject::getProperties()
185
+
* @uses ValueObject::__isset()
184
186
*
185
187
* @return array
186
188
*/
@@ -192,11 +194,11 @@ final public function attributes()
192
194
/**
193
195
* Internal function for Legacy template engine compatibility to check existence of property.
194
196
*
195
-
* @ignore This method is for internal use
197
+
* @internal
196
198
*
197
199
* @deprecated Since 5.0, available purely for legacy eZTemplate compatibility
0 commit comments