Skip to content

Commit

Permalink
test4
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanashi committed Aug 16, 2024
1 parent 15f745c commit 07a0d33
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,3 @@ private function getQuestions(array $questionIDs): array
return $questionList->getObjects();
}
}

/** @internal */
final class GetSearchParameters // phpcs:ignore
{
public function __construct(
/** @var non-empty-string */
public readonly string $query,
) {
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace wcf\system\endpoint\controller\faq\questions\search;

/** @internal */
final class GetSearchParameters
{
public function __construct(
/** @var non-empty-string */
public readonly string $query,
) {
}
}

0 comments on commit 07a0d33

Please sign in to comment.