Development

#3098 (in settings.yml E_ALL | E_STRICT = 4095 is wrong depending of PHP Version)

You must first sign up to be able to contribute.

Ticket #3098 (closed enhancement: fixed)

Opened 9 months ago

Last modified 9 months ago

in settings.yml E_ALL | E_STRICT = 4095 is wrong depending of PHP Version

Reported by: jug Assigned to: fabien
Priority: minor Milestone: 1.0.12
Component: configuration Version: 1.0.11
Keywords: settings error_reporting Cc:
Qualification: Unreviewed

Description

Hi,

settings.yml file tells us that :

dev:
  .settings:
    # E_ALL | E_STRICT = 4095
    error_reporting:        4095

But the value of E_ALL and E_STRICT are PHP version dependant. So, wouldn't it be better that this file is created with this default value :

dev:
  .settings:
    error_reporting:        '<?= (E_ALL | E_STRICT) ?>'

Note : The value for test environment has to change as well.

Change History

03/13/08 00:23:03 changed by fabien

  • milestone set to 1.0.12.

03/13/08 00:25:09 changed by fabien

  • status changed from new to closed.
  • resolution set to fixed.

in r7850