diff --git a/src/Traits/WithEvents.php b/src/Traits/WithEvents.php index 79a14c77c..ab510200b 100644 --- a/src/Traits/WithEvents.php +++ b/src/Traits/WithEvents.php @@ -13,24 +13,36 @@ trait WithEvents protected array $eventStatuses = ['columnSelected' => true, 'searchApplied' => false, 'filterApplied' => false]; // No Longer Used + /** + * @codeCoverageIgnore + */ public function setSortEvent(string $field, string $direction): void { $this->setSort($field, $direction); } // No Longer Used + /** + * @codeCoverageIgnore + */ public function clearSortEvent(): void { $this->clearSorts(); } // No Longer Used + /** + * @codeCoverageIgnore + */ public function setFilterEvent(string $filter, string|array|null $value): void { $this->setFilter($filter, $value); } // No Longer Used + /** + * @codeCoverageIgnore + */ public function clearFilterEvent(): void { $this->setFilterDefaults();