Skip to content

Commit

Permalink
fix STAN
Browse files Browse the repository at this point in the history
  • Loading branch information
lukmzig committed Nov 19, 2024
1 parent 0807b31 commit b7ac3ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/Model/DefaultSearch/Debug/SearchInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
*/
final class SearchInformation
{
private const VERBOSITY_VERBOSE = 2;
// ToDo make constants public in 2.0
public const VERBOSITY_VERBOSE = 2;

private const VERBOSITY_VERY_VERBOSE = 3;
public const VERBOSITY_VERY_VERBOSE = 3;

public function __construct(
private readonly AdapterSearchInterface $search,
Expand Down
4 changes: 2 additions & 2 deletions src/Model/OpenSearch/Debug/SearchInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
*/
final class SearchInformation
{
private const VERBOSITY_VERBOSE = 2;
public const VERBOSITY_VERBOSE = 2;

private const VERBOSITY_VERY_VERBOSE = 3;
public const VERBOSITY_VERY_VERBOSE = 3;

public function __construct(
private readonly AdapterSearchInterface $search,
Expand Down

0 comments on commit b7ac3ef

Please sign in to comment.