Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit e948cc0

Browse files
committed
Make sure we return a boolean value
1 parent 6d7b04b commit e948cc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/SyncPassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ protected function passwordNeedsUpdate($password = null) : bool
9999
*/
100100
protected function hasPasswordColumn() : bool
101101
{
102-
return $this->column() ?: false;
102+
return ! is_null($this->column());
103103
}
104104

105105
/**

0 commit comments

Comments
 (0)