13 lines
252 B
PHP
13 lines
252 B
PHP
<?php
|
|
|
|
namespace Core;
|
|
|
|
class Debug
|
|
{
|
|
public static function x(): void
|
|
{
|
|
ini_set('xdebug.var_display_max_depth', 10);
|
|
ini_set('xdebug.var_display_max_children', 256);
|
|
ini_set('xdebug.var_display_max_data', 1024);
|
|
}
|
|
} |