---
title: "Feature: #87457 - Use symfony/property-info to gather doc block information"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-87457"
source: "Changelog/10.0/Feature-87457-UseSymfonyproperty-infoToGatherDocBlockInformation.rst"
typo3-version: "10.0"
typo3-major: 10
type: "feature"
issue: 87457
forge: "https://forge.typo3.org/issues/87457"
tags: ["PHP-API", "ext:extbase"]
rendered: "2026-09-24T21:45:06+00:00"
---

# Feature: #87457 - Use symfony/property-info to gather doc block information {#feature-87457}

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

## Description {#description}

The use of `symfony/property-info` enables us to resolve non fully qualified class names.

This is now possible:

```php
use TYPO3\CMS\Extbase\Persistence\ObjectStorage;
use ExtbaseTeam\BlogExample\Domain\Model\Comment;

class Post
{
    /*
     * @var ObjectStorage<Comment>
     */
    public $comments;
}
```

Important:
This only works in extbase models as the reflection
costs are high and the information is only needed
in this case.

The non fully qualified class name is now also
supported for injection properties, although it is
still recommended to avoid injection properties in
favor of injection methods or constructor injection.

Example:

```php
use TYPO3\CMS\Extbase\Annotation as Extbase;
use TYPO3\CMS\Extbase\Configuration\ConfigurationManager;

class Service
{
    /*
     * @Extbase\Inject
     * @var ConfigurationManager
     */
    public $configurationManager;
}
```
