We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d32195 commit c3c2976Copy full SHA for c3c2976
ChromePhp.php
@@ -26,7 +26,7 @@ class ChromePhp
26
/**
27
* @var string
28
*/
29
- const VERSION = '4.0.0';
+ const VERSION = '4.1.0';
30
31
32
@@ -73,6 +73,11 @@ class ChromePhp
73
74
const GROUP_COLLAPSED = 'groupCollapsed';
75
76
+ /**
77
+ * @var string
78
+ */
79
+ const TABLE = 'table';
80
+
81
82
83
@@ -225,6 +230,17 @@ public static function groupEnd()
225
230
return self::_log(self::GROUP_END, $args);
226
231
}
227
232
233
234
+ * sends a table log
235
+ *
236
+ * @param string value
237
238
+ public static function table()
239
+ {
240
+ $args = func_get_args();
241
+ return self::_log(self::TABLE, $args);
242
+ }
243
228
244
229
245
* internal logging call
246
*
0 commit comments