---
title: "Deprecation: #83273 - Public properties of TemplateService"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-83273"
source: "Changelog/9.0/Deprecation-83273-PublicPropertiesOfTemplateService.rst"
typo3-version: "9.0"
typo3-major: 9
type: "deprecation"
issue: 83273
forge: "https://forge.typo3.org/issues/83273"
tags: ["Frontend", "PHP-API", "FullyScanned"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Deprecation: #83273 - Public properties of TemplateService {#deprecation-83273}

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

## Description {#description}

The following properties within the PHP class `\TYPO3\CMS\Core\TypoScript\TemplateService`
have been marked as deprecated, as they were moved from public access to protected access:

-   `matchAll`
-   `whereClause`
-   `debug`
-   `allowedPaths`
-   `simulationHiddenOrTime`
-   `nextLevel`
-   `rootId`
-   `absoluteRootLine`
-   `outermostRootlineIndexWithTemplate`
-   `rowSum`
-   `sitetitle`
-   `sectionsMatch`
-   `frames`
-   `MPmap`

They should only be accessed from within the PHP class itself.

## Impact {#impact}

Accessing any of the properties directly within PHP will trigger a deprecation warning.

## Affected Installations {#affected-installations}

Extensions accessing one of the previously public properties directly.

## Migration {#migration}

Remove the PHP calls and either extend the PHP class to your own needs or avoid accessing these properties.
