Skip to content
Snippets Groups Projects

Remove deprecated in PHP 8.4 the \E_STRICT usage

2 unresolved threads

Closes #3465826

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
34 34 E_USER_ERROR => ['User error', RfcLogLevel::ERROR],
35 35 E_USER_WARNING => ['User warning', RfcLogLevel::WARNING],
36 36 E_USER_NOTICE => ['User notice', RfcLogLevel::NOTICE],
37 E_STRICT => ['Strict warning', RfcLogLevel::DEBUG],
38 37 E_RECOVERABLE_ERROR => ['Recoverable fatal error', RfcLogLevel::ERROR],
39 38 E_DEPRECATED => ['Deprecated function', RfcLogLevel::DEBUG],
40 39 E_USER_DEPRECATED => ['User deprecated function', RfcLogLevel::DEBUG],
41 40 ];
  • Andrey Postnikov added 151 commits

    added 151 commits

    Compare with previous version

  • 983 983 $app_root = static::guessApplicationRoot();
    984 984 }
    985 985
    986 // Enforce E_STRICT, but allow users to set levels not part of E_STRICT.
    987 error_reporting(E_STRICT | E_ALL);
    986 // E_STRICT is part of E_ALL on PHP 5.4+, So allow user to set E_ALL.
  • added 1 commit

    Compare with previous version

  • closed

  • Please register or sign in to reply
    Loading