4343class ByPropertyIdArray extends \ArrayObject {
4444
4545 /**
46- * @since 0.2
47- *
4846 * @var array[]|null
4947 */
5048 private $ byId = null ;
@@ -79,7 +77,6 @@ public function buildIndex() {
7977
8078 /**
8179 * Checks whether id indexed array has been generated.
82- * @since 0.5
8380 *
8481 * @throws RuntimeException
8582 */
@@ -170,12 +167,11 @@ public function toFlatArray() {
170167
171168 /**
172169 * Returns the absolute numeric indices of objects featuring the same property id.
173- * @since 0.5
174170 *
175171 * @param PropertyId $propertyId
176- * @return int[]
177172 *
178173 * @throws RuntimeException
174+ * @return int[]
179175 */
180176 private function getFlatArrayIndices ( PropertyId $ propertyId ) {
181177 $ this ->assertIndexIsBuild ();
@@ -197,7 +193,6 @@ private function getFlatArrayIndices( PropertyId $propertyId ) {
197193
198194 /**
199195 * Moves an object within its "property group".
200- * @since 0.5
201196 *
202197 * @param object $object
203198 * @param int $toIndex Absolute index within a "property group".
@@ -237,7 +232,6 @@ private function moveObjectInPropertyGroup( $object, $toIndex ) {
237232
238233 /**
239234 * Moves an object to the end of its "property group".
240- * @since 0.5
241235 *
242236 * @param object $object
243237 */
@@ -260,7 +254,6 @@ private function moveObjectToEndOfPropertyGroup( $object ) {
260254
261255 /**
262256 * Removes an object from the array structures.
263- * @since 0.5
264257 *
265258 * @param object $object
266259 */
@@ -273,7 +266,6 @@ private function removeObject( $object ) {
273266
274267 /**
275268 * Inserts an object at a specific index.
276- * @since 0.5
277269 *
278270 * @param object $object
279271 * @param int $index Absolute index within the flat list of objects.
@@ -291,8 +283,6 @@ private function insertObjectAtIndex( $object, $index ) {
291283 }
292284
293285 /**
294- * @since 0.5
295- *
296286 * @param PropertyId $propertyId
297287 * @param int $toIndex
298288 */
@@ -350,9 +340,9 @@ private function movePropertyGroup( PropertyId $propertyId, $toIndex ) {
350340 /**
351341 * Returns the index of a "property group" (the first object in the flat array that features
352342 * the specified property). Returns false if property id could not be found.
353- * @since 0.5
354343 *
355344 * @param PropertyId $propertyId
345+ *
356346 * @return bool|int
357347 */
358348 private function getPropertyGroupIndex ( PropertyId $ propertyId ) {
@@ -447,9 +437,8 @@ public function addObjectAtIndex( $object, $index = null ) {
447437 $ this ->buildIndex ();
448438 }
449439
450- /*
440+ /**
451441 * Adds an object to an existing property group at the specified absolute index.
452- * @since 0.5
453442 *
454443 * @param object $object
455444 * @param int $index
0 commit comments