Joomla 3.8.13显示没有错误行号的php错误

My Joomla system reports this error:

syntax error, unexpected 'new' (T_NEW)

It does not report the line and file where the PHP error is generated.

in my configuraton.php file I have:

public $error_reporting = 'maximum';

I can't understand why this behavior, Can anyone help me?

You have it misspelled. Please update that line to:

public $error_reporting = 'maximum';
                                ^--typo

Please make it

public $error_reporting = 'development';