Skip to content

Instantly share code, notes, and snippets.

@userlond
Created February 12, 2025 10:07
Show Gist options
  • Save userlond/c7a33274fc722d5b801511ab7990f2ec to your computer and use it in GitHub Desktop.
Save userlond/c7a33274fc722d5b801511ab7990f2ec to your computer and use it in GitHub Desktop.
Disable Array Limit plugin for Kint debugger
<?php
\Kint::$plugins = collect(\Kint::$plugins)->filter(function($plugin) {
return $plugin != \Kint\Parser\ArrayLimitPlugin::class;
})->all();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment