Completed
Push — develop ( b291db...99d0f9 )
by Peter
9s
created

DisabledBar::getPanel()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
/**
3
 * Webino (http://webino.sk/)
4
 *
5
 * @link        https://github.com/webino/WebinoDebug/ for the canonical source repository
6
 * @copyright   Copyright (c) 2014-2015 Webino, s. r. o. (http://webino.sk/)
7
 * @license     BSD-3-Clause
8
 */
9
10
namespace WebinoDebug\Tracy\Workaround;
11
12
/**
13
 * Disabled tracy debug bar
14
 *
15
 * @todo issue https://github.com/nette/tracy/issues/73
16
 */
17
class DisabledBar
18
{
19
    /**
20
     * @var array
21
     */
22
    public $info = [];
23
24
    /**
25
     *
26
     */
27
    public function addPanel()
28
    {
29
    }
30
31
    /**
32
     *
33
     */
34
    public function getPanel()
35
    {
36
    }
37
38
    /**
39
     *
40
     */
41
    public function render()
42
    {
43
    }
44
45
    public function dispatchAssets()
46
    {
47
    }
48
}
49