MediaWiki master
Placeholder.php
Go to the documentation of this file.
1<?php
2
3namespace Wikimedia\DebugInfo;
4
12 public $desc;
13
17 public function __construct( $value ) {
18 if ( is_object( $value ) ) {
19 $this->desc = get_class( $value ) . '#' . spl_object_id( $value );
20 } else {
21 $this->desc = gettype( $value );
22 }
23 }
24}
A class used for replacing large objects in var_dump() output.
string $desc
A description of the replaced object.