---
title: "Feature: #73752 - Allow accessing ObjectStorage as array in Fluid and other places"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-73752"
source: "Changelog/8.0/Feature-73752-AllowAccessingObjectStorageAsArrayInFluidAndOtherPlaces.rst"
typo3-version: "8.0"
typo3-major: 8
type: "feature"
issue: 73752
forge: "https://forge.typo3.org/issues/73752"
tags: ["Fluid", "PHP-API"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #73752 - Allow accessing ObjectStorage as array in Fluid and other places {#feature-73752}

See [forge#73752](https://forge.typo3.org/issues/73752)

## Description {#description}

Creates an alias of `toArray()` allowing the method to be called as `getArray()`
which in turn allows the method to be called transparently from
`ObjectAccess::getPropertyPath`, enabling access in Fluid and other places.

## Impact {#impact}

By creating an extremely simple aliasing of `toArray()` on ObjectStorage allowing
it to be called as `getArray()` enables:

```php
ObjectAccess::getPropertyPath($subject, 'objectstorageproperty.array.4') to get the 4th element
```

```text
{myObject.objectstorageproperty.array.4} in Fluid (including {myObject.objectstorageproperty.array.{dynamicIndex}} in v8)
```
