From 6d3ea97a4a82dfbe740ece5341890d3295554b1e Mon Sep 17 00:00:00 2001 From: Paragon Initiative Enterprises Date: Sun, 15 Jan 2023 14:10:59 -0500 Subject: [PATCH] Fix typos, docblocks --- src/EncryptedMultiRows.php | 2 +- src/EncryptedRow.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EncryptedMultiRows.php b/src/EncryptedMultiRows.php index ee0c28b..d06df6d 100644 --- a/src/EncryptedMultiRows.php +++ b/src/EncryptedMultiRows.php @@ -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; } diff --git a/src/EncryptedRow.php b/src/EncryptedRow.php index 808357c..bf589b2 100644 --- a/src/EncryptedRow.php +++ b/src/EncryptedRow.php @@ -786,7 +786,7 @@ public function getPermitEmpty() } /** - * @param $permitted + * @param bool $permitted * @return static */ public function setPermitEmpty($permitted)