Feature #76008
closedAdd property visibility to DebuggerUtility::var_dump
100%
Description
It would be great if the method \TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump would show the visibility of object properties.
I've added a screenshot of how it could look.
Files
Updated by Nicola Heisch over 8 years ago
The Visibility could be checked in \TYPO3\CMS\Extbase\Utility\DebuggerUtility::renderContent and then passed to the other methods until the headers are rendered.
$visibility = ($property->isProtected() ? 'protected' : ($property->isPrivate() ? 'private' : 'public'));
Updated by Wouter Wolters over 8 years ago
- Target version deleted (
7.6.5)
Features won't be included in stable releases.
Updated by Gerrit Code Review over 8 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/48087
Updated by Gerrit Code Review over 8 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/48087
Updated by Gerrit Code Review over 8 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/48087
Updated by Tomita Militaru over 8 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 392b04e2ddbcca6ad98b5a054d77159365291369.