-
-
Notifications
You must be signed in to change notification settings - Fork 424
Expand file tree
/
Copy pathHasDataFormatter.php
More file actions
80 lines (69 loc) · 2.04 KB
/
HasDataFormatter.php
File metadata and controls
80 lines (69 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
declare(strict_types=1);
/*
* This file is part of the DebugBar package.
*
* (c) 2013 Maxime Bouroumeau-Fuseau
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace DebugBar\DataFormatter;
use DebugBar\DataCollector\DataCollector;
trait HasDataFormatter
{
protected ?DataFormatterInterface $dataFormatter = null;
/**
* Indicates whether the Symfony HtmlDumper will be used to dump variables for rich variable
* rendering.
*
*/
public function isHtmlVarDumperUsed(): bool
{
return $this->getDataFormatter() instanceof HtmlDataFormatter;
}
/**
* Indicates whether the JSON VarDumper will be used to dump variables for client-side
* rendering.
*/
public function isJsonVarDumperUsed(): bool
{
return $this->getDataFormatter() instanceof JsonDataFormatter;
}
/**
* Sets the default data formater instance used by all collectors subclassing this class
*
*/
public static function setDefaultDataFormatter(DataFormatterInterface $formater): void
{
DataCollector::$defaultDataFormatter = $formater;
}
/**
* Returns the default data formater
*
*/
public static function getDefaultDataFormatter(): DataFormatterInterface
{
if (DataCollector::$defaultDataFormatter === null) {
DataCollector::$defaultDataFormatter = new HtmlDataFormatter();
}
return DataCollector::$defaultDataFormatter;
}
/**
* Sets the data formater instance used by this collector
*
* @return $this
*/
public function setDataFormatter(DataFormatterInterface $formatter): static
{
$this->dataFormatter = $formatter;
return $this;
}
public function getDataFormatter(): DataFormatterInterface
{
if ($this->dataFormatter === null) {
$this->dataFormatter = DataCollector::getDefaultDataFormatter();
}
return $this->dataFormatter;
}
}