/**
* @codeCoverageIgnore
*/
public static function composerSkipFlags(): void
{ if (\
defined('KINT_SKIP_FACADE'
) && \
defined('KINT_SKIP_HELPERS'
)) { return;
} $extras = self::
composerGetExtras();
if (!
empty($extras['disable-facade'
]) && !\
defined('KINT_SKIP_FACADE'
)) { \
define('KINT_SKIP_FACADE', true
);
} if (!
empty($extras['disable-helpers'
]) && !\
defined('KINT_SKIP_HELPERS'
)) { \
define('KINT_SKIP_HELPERS', true
);
} } public static function isTrace(array
$trace): bool
{