diff --git a/src/Assert.php b/src/Assert.php index 31405813..a667b13c 100644 --- a/src/Assert.php +++ b/src/Assert.php @@ -65,7 +65,7 @@ public static function string(mixed $value, string $message = ''): string public static function stringNotEmpty(mixed $value, string $message = ''): string { static::string($value, $message); - static::notEq($value, '', $message); + static::notSame($value, '', $message); return $value; }