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
fix: Allow uuid as path source in materialized path strategy
- Fixes a path validation error when using an Uuid as primary key in an
entity and also as TreePathSource in the MaterializedPath strategy
- Added a test to confirm the regression if 'uuid' is removed from the
allowed types list in Validator.php
- chore: PHPCS fixes
* Get list of children followed by given $node. This returns a QueryBuilder object
135
+
*
136
+
* @param object|null $node If null, all tree nodes will be taken
137
+
* @param bool $direct True to take only direct children
138
+
* @param string|string[]|null $sortByField Field name or array of fields names to sort by
139
+
* @param string|string[] $direction Sort order ('asc'|'desc'|'ASC'|'DESC'). If $sortByField is an array, this may also be an array with matching number of elements
140
+
* @param bool $includeNode Include the root node in results?
* Get list of children followed by given $node. This returns a QueryBuilder object
239
+
* Get list of children followed by given $node. This returns a Query
219
240
*
220
241
* @param object|null $node If null, all tree nodes will be taken
221
242
* @param bool $direct True to take only direct children
222
243
* @param string|string[]|null $sortByField Field name or array of fields names to sort by
223
244
* @param string|string[] $direction Sort order ('asc'|'desc'|'ASC'|'DESC'). If $sortByField is an array, this may also be an array with matching number of elements
224
245
* @param bool $includeNode Include the root node in results?
* Get list of children followed by given $node. This returns a Query
234
-
*
235
-
* @param object|null $node If null, all tree nodes will be taken
236
-
* @param bool $direct True to take only direct children
237
-
* @param string|string[]|null $sortByField Field name or array of fields names to sort by
238
-
* @param string|string[] $direction Sort order ('asc'|'desc'|'ASC'|'DESC'). If $sortByField is an array, this may also be an array with matching number of elements
239
-
* @param bool $includeNode Include the root node in results?
0 commit comments