diff --git a/app/Services/PdfMaker/Designs/Utilities/TableHelpers.php b/app/Services/PdfMaker/Designs/Utilities/TableHelpers.php index e3b39b72680f..38f2cb63a2fc 100644 --- a/app/Services/PdfMaker/Designs/Utilities/TableHelpers.php +++ b/app/Services/PdfMaker/Designs/Utilities/TableHelpers.php @@ -70,10 +70,10 @@ trait TableHelpers * Return "true" or "false" based on null or empty check. * We need to return false as string because of HTML parsing. * - * @param string $property + * @param mixed $property * @return string */ - public function toggleHiddenProperty(string $property): string + public function toggleHiddenProperty($property): string { if (is_null($property)) { return 'false';