@@ -20,8 +20,6 @@ class SubscriberFilter implements FilterRequestInterface
2020 private ?bool $ isConfirmed ;
2121 private ?bool $ isBlacklisted ;
2222 private array $ columns ;
23- private ?string $ sortBy ;
24- private ?string $ sortDirection ;
2523 private ?string $ findColumn ;
2624 private ?string $ findValue ;
2725
@@ -36,8 +34,6 @@ public function __construct(
3634 ?bool $ isConfirmed = null ,
3735 ?bool $ isBlacklisted = null ,
3836 array $ columns = [],
39- ?string $ sortBy = null ,
40- ?string $ sortDirection = null ,
4137 ?string $ findColumn = null ,
4238 ?string $ findValue = null ,
4339 ) {
@@ -51,8 +47,6 @@ public function __construct(
5147 $ this ->isConfirmed = $ isConfirmed ;
5248 $ this ->isBlacklisted = $ isBlacklisted ;
5349 $ this ->columns = $ columns ;
54- $ this ->sortBy = $ sortBy ;
55- $ this ->sortDirection = $ sortDirection ;
5650 $ this ->findColumn = $ findColumn ;
5751 $ this ->findValue = $ findValue ;
5852 }
@@ -107,16 +101,6 @@ public function getColumns(): array
107101 return $ this ->columns ;
108102 }
109103
110- public function getSortBy (): ?string
111- {
112- return $ this ->sortBy ;
113- }
114-
115- public function getSortDirection (): ?string
116- {
117- return $ this ->sortDirection ;
118- }
119-
120104 public function getFindColumn (): ?string
121105 {
122106 return $ this ->findColumn ;
0 commit comments