[PECL-CVS] [pecl-authentication-krb5] master: tests: drop E_STRICT from error_reporting (removed in PHP 8)

[email protected] (David Härdeman via Moritz Bechler) Mon, 8 Jun 2026 15:49:51 +0000
Newsgroups php.pecl.cvs
Message-ID <[email protected]>
Author: David Härdeman (Alphix)
Committer: Moritz Bechler (mbechler)
Date: 2026-06-08T15:36:06+02:00

Commit: https://github.com/php/pecl-authentication-krb5/commit/bb82c7093e84050621b943c2dc3b177c497589e5
Raw diff: https://github.com/php/pecl-authentication-krb5/commit/bb82c7093e84050621b943c2dc3b177c497589e5.diff

tests: drop E_STRICT from error_reporting (removed in PHP 8)

Changed paths:
  M  tests/config.php.dist


Diff:

diff --git a/tests/config.php.dist b/tests/config.php.dist
index 8ce1b4d..550f4ba 100644
--- a/tests/config.php.dist
+++ b/tests/config.php.dist
@@ -22,6 +22,6 @@ if(file_exists(dirname(__FILE__) . '/krb5.ini')) {
 	$use_config = true;
 }
 
-error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT);
+error_reporting(E_ALL & ~E_DEPRECATED);
 return true;
 ?>