Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.

Commit 6660c80

Browse files
committed
Remove redundant null check after isset()
1 parent 827d3fa commit 6660c80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext_mongodb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,7 @@ public function getCode() : string
13851385

13861386
public function getScope() : mixed
13871387
{
1388-
if ( isset( $this->scope) && $this->scope !== NULL )
1388+
if ( isset( $this->scope ) )
13891389
{
13901390
return (object) $this->scope;
13911391
}

0 commit comments

Comments
 (0)