best way to debug CI |
Try using <?PHP STRICT_TYPES=1); at the start of every PHP file (it is not hereditary and only applies to that file). This ensures warnings are not “swept under the carpet”, errors are raised instead and require fixing before proceeding.
Also set error_reporting(-1):, which is maximum errors. Only disable ini_set(‘display_errors’, ‘false’); on production to ensure both errors and warnings are logged. (01-19-2021, 05:29 PM)richb201 Wrote: I use phpStorm and xdebug and they work great together. I am debugging in a docker container too, just to make it a little more complexYeah, PhpStorm is very good! |
Welcome Guest, Not a member yet? Register Sign In |