Skip to content

Commit

Permalink
Ignore WithEvents Coverage (#2105)
Browse files Browse the repository at this point in the history
  • Loading branch information
lrljoe authored Dec 1, 2024
1 parent d9906d1 commit 62591bb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Traits/WithEvents.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 62591bb

Please sign in to comment.