Skip to content

Commit

Permalink
Fix typos, docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
paragonie-security committed Jan 15, 2023
1 parent 1200bc3 commit 6d3ea97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/EncryptedMultiRows.php
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ public function getEncryptedRowObjectForTable($tableName = '')
$encryptedRow = $this->tables[$tableName];
$encryptedRow->setTypedIndexes($this->typedIndexes);
if (!is_null($this->permitEmpty)) {
$encryptedRow->setPermitEmtpy($this->permitEmpty);
$encryptedRow->setPermitEmpty($this->permitEmpty);
}
return $encryptedRow;
}
Expand Down
2 changes: 1 addition & 1 deletion src/EncryptedRow.php
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ public function getPermitEmpty()
}

/**
* @param $permitted
* @param bool $permitted
* @return static
*/
public function setPermitEmpty($permitted)
Expand Down

0 comments on commit 6d3ea97

Please sign in to comment.