Skip to content

Commit

Permalink
Merge pull request #174 from remicollet/test-php84
Browse files Browse the repository at this point in the history
fix tests for 8.4
  • Loading branch information
m6w6 committed Jul 5, 2024
2 parents 472e987 + da2e275 commit 2f792ff
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/015.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function gc($time) {

ini_set('session.serialize_handler', 'msgpack');

session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
@session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');

session_start();

Expand Down
2 changes: 1 addition & 1 deletion tests/015b.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function gc($time) {
return true;
}

session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
@session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');

session_start();

Expand Down
2 changes: 1 addition & 1 deletion tests/015e.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function gc($time) {

ini_set('session.serialize_handler', 'msgpack');

session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
@session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');

session_start();

Expand Down
2 changes: 1 addition & 1 deletion tests/027.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class Bar {

ini_set('session.serialize_handler', 'msgpack');

session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
@session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');


$db_object = new Foo();
Expand Down
2 changes: 1 addition & 1 deletion tests/028.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function gc($time) {

ini_set('session.serialize_handler', 'msgpack');

session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
@session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');

session_start();

Expand Down

0 comments on commit 2f792ff

Please sign in to comment.