Skip to content

Commit e11e896

Browse files
committed
refactor(clippy): fix bool-comparison
1 parent 64fbb41 commit e11e896

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zend/handlers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ impl ZendObjectHandlers {
241241
cfg_if::cfg_if! {
242242
if #[cfg(php84)] {
243243
#[allow(clippy::unnecessary_mut_passed)]
244-
if zend_is_true(&mut zv) == true {
244+
if zend_is_true(&mut zv) {
245245
return Ok(1);
246246
}
247247
} else {

0 commit comments

Comments
 (0)