File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 22
22
* Turn of error reporting for class definition. PHP Users of 8.1 receive a deprectation warning otherwise but
23
23
* it is not fixable from the minimum version 7.4 as it required the "mixed" keyword.
24
24
*/
25
- $ oldReporting = error_reporting (error_reporting () ^ E_DEPRECATED );
25
+ $ oldReporting = error_reporting (error_reporting () & ~ E_DEPRECATED );
26
26
27
27
/**
28
28
* Defines the access mode of a connection.
Original file line number Diff line number Diff line change 23
23
* Turn of error reporting for class definition. PHP Users of 8.1 receive a deprectation warning otherwise but
24
24
* it is not fixable from the minimum version 7.4 as it required the "mixed" keyword.
25
25
*/
26
- $ oldReporting = error_reporting (error_reporting () ^ E_DEPRECATED );
26
+ $ oldReporting = error_reporting (error_reporting () & ~ E_DEPRECATED );
27
27
28
28
/**
29
29
* The actual type of query after is has been run.
Original file line number Diff line number Diff line change 28
28
* Turn of error reporting for class definition. PHP Users of 8.1 receive a deprectation warning otherwise but
29
29
* it is not fixable from the minimum version 7.4 as it required the "mixed" keyword.
30
30
*/
31
- $ oldReporting = error_reporting (error_reporting () ^ E_DEPRECATED );
31
+ $ oldReporting = error_reporting (error_reporting () & ~ E_DEPRECATED );
32
32
33
33
/**
34
34
* Abstract immutable container with basic functionality to integrate easily into the driver ecosystem.
You can’t perform that action at this time.
0 commit comments