Completed
Push — develop ( 62ece8...a96ffc )
by Peter
12:27
created
src/WebinoDebug/Debugger/Bar/ConfigPanel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
     }
93 93
 
94 94
     /**
95
-     * @param object|DebuggerInterface $debugger
95
+     * @param DebuggerInterface $debugger
96 96
      * @return self
97 97
      */
98 98
     public function setDebugger(DebuggerInterface $debugger)
Please login to merge, or discard this patch.
src/WebinoDebug/Debugger/Bar/InfoPanel.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 
10 10
 namespace WebinoDebug\Debugger\Bar;
11 11
 
12
-use WebinoDebug\Exception;
13 12
 use WebinoDebug\Factory\DebuggerFactory;
14 13
 use Zend\ServiceManager\ServiceManager;
15 14
 use Zend\Version\Version;
Please login to merge, or discard this patch.
src/WebinoDebug/Listener/EventProfilerListener.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     protected $listeners = [];
36 36
 
37 37
     /**
38
-     * @param object|EventProfiler $eventProfiler
38
+     * @param EventProfiler $eventProfiler
39 39
      */
40 40
     public function __construct(EventProfiler $eventProfiler)
41 41
     {
Please login to merge, or discard this patch.
src/WebinoDebug/Options/DebuggerOptions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
     /**
116 116
      * Debugger bar panels
117 117
      *
118
-     * @return array
118
+     * @return boolean
119 119
      */
120 120
     public function getBarPanels()
121 121
     {
Please login to merge, or discard this patch.
src/WebinoDebug/Service/Debugger.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     }
78 78
 
79 79
     /**
80
-     * @param $id
80
+     * @param string $id
81 81
      * @return PanelInterface|null
82 82
      */
83 83
     public function getBarPanel($id)
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-     * @param object|PanelInterface|null $panel
89
+     * @param null|PanelInterface $panel
90 90
      * @param string $id
91 91
      * @return self
92 92
      */
Please login to merge, or discard this patch.
src/WebinoDebug/Service/EventProfiler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,8 @@
 block discarded – undo
58 58
     private $lastKey;
59 59
 
60 60
     /**
61
-     * @param object|Debugger $debugger
62
-     * @param object|SharedEventManagerInterface $sharedEvents
61
+     * @param Debugger $debugger
62
+     * @param SharedEventManagerInterface $sharedEvents
63 63
      */
64 64
     public function __construct(Debugger $debugger, SharedEventManagerInterface $sharedEvents)
65 65
     {
Please login to merge, or discard this patch.