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

DisabledBar   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
lcom 0
cbo 0
dl 0
loc 32
rs 10
c 1
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A addPanel() 0 3 1
A getPanel() 0 3 1
A render() 0 3 1
A dispatchAssets() 0 3 1
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