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)