Created
February 12, 2025 10:07
-
-
Save userlond/c7a33274fc722d5b801511ab7990f2ec to your computer and use it in GitHub Desktop.
Disable Array Limit plugin for Kint debugger
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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