Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / libs / DebugInfo / DebugInfoTrait.php
blobf2c9453fe50a5b3872cedae4fbe4f57da6e6c09d
1 <?php
3 namespace Wikimedia\DebugInfo;
5 /**
6 * A trait for automatic __debugInfo() modifications.
8 * Recursion into properties is prevented if they have a @noVarDump annotation
9 * in their doc comment. See T277618.
11 * @since 1.40
13 trait DebugInfoTrait {
14 public function __debugInfo() {
15 return DumpUtils::objectToArray( $this );