aboutsummaryrefslogtreecommitdiffstats
path: root/includes/libs/DebugInfo/DebugInfoTrait.php
blob: f2c9453fe50a5b3872cedae4fbe4f57da6e6c09d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace Wikimedia\DebugInfo;

/**
 * A trait for automatic __debugInfo() modifications.
 *
 * Recursion into properties is prevented if they have a @noVarDump annotation
 * in their doc comment. See T277618.
 *
 * @since 1.40
 */
trait DebugInfoTrait {
	public function __debugInfo() {
		return DumpUtils::objectToArray( $this );
	}
}