summaryrefslogtreecommitdiff
path: root/app/Functions/FunctionsPrint.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Functions/FunctionsPrint.php')
-rw-r--r--app/Functions/FunctionsPrint.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Functions/FunctionsPrint.php b/app/Functions/FunctionsPrint.php
index 364dc669ec..2f1e10dbd5 100644
--- a/app/Functions/FunctionsPrint.php
+++ b/app/Functions/FunctionsPrint.php
@@ -600,13 +600,13 @@ class FunctionsPrint
*/
public static function getLdsSummary(Individual $individual): string
{
- $BAPL = $individual->getFacts('BAPL') ? 'B' : '_';
- $ENDL = $individual->getFacts('ENDL') ? 'E' : '_';
- $SLGC = $individual->getFacts('SLGC') ? 'C' : '_';
+ $BAPL = $individual->facts('BAPL') ? 'B' : '_';
+ $ENDL = $individual->facts('ENDL') ? 'E' : '_';
+ $SLGC = $individual->facts('SLGC') ? 'C' : '_';
$SLGS = '_';
foreach ($individual->getSpouseFamilies() as $family) {
- if ($family->getFacts('SLGS')) {
+ if ($family->facts('SLGS')) {
$SLGS = '';
}
}