Skip to content

Commit 4eb4371

Browse files
authored
Ignore WithEvents Coverage
1 parent d9906d1 commit 4eb4371

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/Traits/WithEvents.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,36 @@ trait WithEvents
1313
protected array $eventStatuses = ['columnSelected' => true, 'searchApplied' => false, 'filterApplied' => false];
1414

1515
// No Longer Used
16+
/**
17+
* @codeCoverageIgnore
18+
*/
1619
public function setSortEvent(string $field, string $direction): void
1720
{
1821
$this->setSort($field, $direction);
1922
}
2023

2124
// No Longer Used
25+
/**
26+
* @codeCoverageIgnore
27+
*/
2228
public function clearSortEvent(): void
2329
{
2430
$this->clearSorts();
2531
}
2632

2733
// No Longer Used
34+
/**
35+
* @codeCoverageIgnore
36+
*/
2837
public function setFilterEvent(string $filter, string|array|null $value): void
2938
{
3039
$this->setFilter($filter, $value);
3140
}
3241

3342
// No Longer Used
43+
/**
44+
* @codeCoverageIgnore
45+
*/
3446
public function clearFilterEvent(): void
3547
{
3648
$this->setFilterDefaults();

0 commit comments

Comments
 (0)