Skip to content

Commit

Permalink
Remove useless deprecated flag (PHP 8.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpesari committed Jan 15, 2025
1 parent 101ddd6 commit 39d02bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/init_integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

namespace FacebookAdsTest\Bootstrap;

error_reporting(E_ALL | E_STRICT);
error_reporting(E_ALL);
if (!ini_get('date.timezone')) {
ini_set('date.timezone', 'UTC');
}
Expand Down
2 changes: 1 addition & 1 deletion test/init_unit.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

namespace FacebookAdsTest\Bootstrap;

error_reporting(E_ALL | E_STRICT);
error_reporting(E_ALL);
if (!ini_get('date.timezone')) {
ini_set('date.timezone', 'UTC');
}
Expand Down

0 comments on commit 39d02bf

Please sign in to comment.