Completed
Branch master (1fd024)
by Michał
02:37
created
Debug.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
176 176
      * Creates a default variable dumper to be used by self::dump() if no other has been set before the method
177 177
      * call to self::dump().
178 178
      *
179
-     * @return  interfaces\Dumper|callable  $dumper     The created dumper.
179
+     * @return  debug\dumpers\Native  $dumper     The created dumper.
180 180
      */
181 181
     protected static function createDefaultDumper()
182 182
     {
Please login to merge, or discard this patch.
debug/Frame.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     /**
129 129
      * Returns the line which got executed resulting in the inspected trace.
130 130
      *
131
-     * @return  int|null
131
+     * @return  integer
132 132
      */
133 133
     public function getLine()
134 134
     {
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     /**
139 139
      * Returns the name of the class which got executed resulting in the inspected trace.
140 140
      *
141
-     * @return  string|null
141
+     * @return  string
142 142
      */
143 143
     public function getClass()
144 144
     {
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     /**
149 149
      * Returns the namespace of the class which got executed resulting in the inspected trace.
150 150
      *
151
-     * @return  string|null
151
+     * @return  string
152 152
      */
153 153
     public function getNamespace()
154 154
     {
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
      * Returns the shortened name (without the namespace) of the class which got executed resulting in the
160 160
      * inspected trace.
161 161
      *
162
-     * @return  string|null
162
+     * @return  string
163 163
      */
164 164
     public function getShortClass()
165 165
     {
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
     /**
170 170
      * Returns the function/method which got executed resulting in the inspected trace.
171 171
      *
172
-     * @return  string|null
172
+     * @return  string
173 173
      */
174 174
     public function getFunction()
175 175
     {
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
     /**
180 180
      * Returns the type of the function/method call (static or dynamic).
181 181
      *
182
-     * @return  string|null
182
+     * @return  string
183 183
      */
184 184
     public function getType()
185 185
     {
Please login to merge, or discard this patch.
debug/Inspector.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     /**
60 60
      * Returns the Exception Handler currently handling the inspected Exception, if available.
61 61
      *
62
-     * @return  handlers\Exception|null
62
+     * @return  handlers\Exception
63 63
      */
64 64
     public function getHandler()
65 65
     {
Please login to merge, or discard this patch.