1 | <?php |
||
16 | class FirephpWrapper |
||
17 | { |
||
18 | /** @var FirePHP $firephp */ |
||
19 | protected $firephp; |
||
20 | protected $howManyLogged; |
||
21 | |||
22 | /** |
||
23 | * @param FirephpWrapperOptions $options |
||
24 | */ |
||
25 | 10 | public function __construct(FirephpWrapperOptions $options) |
|
32 | |||
33 | /** |
||
34 | * @param $object |
||
35 | * @param string $type |
||
36 | * @param null $label |
||
37 | * @param array $options |
||
38 | * @return self |
||
39 | */ |
||
40 | 5 | public function write($object, $type = 'info', $label = null, $options = []) |
|
47 | |||
48 | /** |
||
49 | * @return int |
||
50 | */ |
||
51 | 3 | public function howManyLogged() |
|
55 | |||
56 | /** |
||
57 | * @param \FirePHP $firephp |
||
58 | */ |
||
59 | 10 | public function setFirephp($firephp) |
|
63 | |||
64 | /** |
||
65 | * @return \FirePHP |
||
66 | */ |
||
67 | 2 | public function getFirephp() |
|
71 | } |
||
72 |