From 08536b30ee570f7af0dc3bf0bec33d7b68e62c35 Mon Sep 17 00:00:00 2001 From: KhalidAlansary Date: Wed, 13 Aug 2025 11:21:16 +0300 Subject: [PATCH] fix: assertion error in php.md --- php.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php.md b/php.md index d5efd5c81f..ebf4f0644c 100644 --- a/php.md +++ b/php.md @@ -229,7 +229,7 @@ assert($c >= $d); // The following will only be true if the values match and are the same type. assert($c === $d); assert($a !== $d); -assert(1 === '1'); +assert(1 === 1); assert(1 !== '1'); // 'Spaceship' operator (since PHP 7)