File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
src/Traits/Core/QueryStrings Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -17,17 +17,17 @@ protected function setupQueryStringStatusForSearch(): void
1717 }
1818 }
1919
20- protected function hasQueryStringStatusForSearch (): bool
20+ public function hasQueryStringStatusForSearch (): bool
2121 {
2222 return $ this ->hasQueryStringConfigStatus ('search ' );
2323 }
2424
25- protected function getQueryStringStatusForSearch (): bool
25+ public function getQueryStringStatusForSearch (): bool
2626 {
2727 return $ this ->getQueryStringConfigStatus ('search ' );
2828 }
2929
30- protected function queryStringForSearchEnabled (): bool
30+ public function queryStringForSearchEnabled (): bool
3131 {
3232 $ this ->setupQueryStringStatusForSearch ();
3333
@@ -49,12 +49,12 @@ public function setQueryStringForSearchDisabled(): self
4949 return $ this ->setQueryStringStatusForSearch (false );
5050 }
5151
52- protected function hasQueryStringAliasForSearch (): bool
52+ public function hasQueryStringAliasForSearch (): bool
5353 {
5454 return $ this ->hasQueryStringConfigAlias ('search ' );
5555 }
5656
57- protected function getQueryStringAliasForSearch (): string
57+ public function getQueryStringAliasForSearch (): string
5858 {
5959 return $ this ->getQueryStringConfigAlias ('search ' );
6060 }
Original file line number Diff line number Diff line change @@ -10,19 +10,19 @@ protected function queryStringHasQueryStringForSort(): array
1010
1111 }
1212
13- public function setupQueryStringStatusForSort (): void
13+ protected function setupQueryStringStatusForSort (): void
1414 {
1515 if (! $ this ->hasQueryStringStatusForSort ()) {
1616 $ this ->setQueryStringForSortEnabled ();
1717 }
1818 }
1919
20- protected function hasQueryStringStatusForSort (): bool
20+ public function hasQueryStringStatusForSort (): bool
2121 {
2222 return $ this ->hasQueryStringConfigStatus ('sorts ' );
2323 }
2424
25- protected function getQueryStringStatusForSort (): bool
25+ public function getQueryStringStatusForSort (): bool
2626 {
2727 return $ this ->getQueryStringConfigStatus ('sorts ' );
2828 }
@@ -49,12 +49,12 @@ public function setQueryStringForSortDisabled(): self
4949 return $ this ->setQueryStringStatusForSort (false );
5050 }
5151
52- protected function hasQueryStringAliasForSort (): bool
52+ public function hasQueryStringAliasForSort (): bool
5353 {
5454 return $ this ->hasQueryStringConfigAlias ('sorts ' );
5555 }
5656
57- protected function getQueryStringAliasForSort (): string
57+ public function getQueryStringAliasForSort (): string
5858 {
5959 return $ this ->getQueryStringConfigAlias ('sorts ' );
6060 }
You can’t perform that action at this time.
0 commit comments