What are the implications of disabling the E_STRICT error reporting in PHP.ini when using Smarty?

Disabling E_STRICT error reporting in PHP.ini when using Smarty may lead to potential issues being overlooked or not properly addressed during development. To solve this, it is recommended to enable E_STRICT error reporting to ensure that all potential issues are caught and addressed promptly.

error_reporting(E_ALL | E_STRICT);