includeHiddenPages; case 'includeHiddenContent': return $this->includeHiddenContent; case 'includeDeletedRecords': return $this->includeDeletedRecords; case 'includeScheduledRecords': return $this->includeScheduledRecords; } throw new AspectPropertyNotFoundException('Property "' . $name . '" not found in Aspect "' . __CLASS__ . '".', 1527780439); } public function includeHidden(): bool { return $this->includeHiddenContent || $this->includeHiddenPages; } public function includeHiddenPages(): bool { return $this->includeHiddenPages; } public function includeHiddenContent(): bool { return $this->includeHiddenContent; } public function includeScheduledRecords(): bool { return $this->includeScheduledRecords; } public function includeDeletedRecords(): bool { return $this->includeDeletedRecords; } }