Skip to content

Commit b7ac3ef

Browse files
committed
fix STAN
1 parent 0807b31 commit b7ac3ef

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/Model/DefaultSearch/Debug/SearchInformation.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@
2323
*/
2424
final class SearchInformation
2525
{
26-
private const VERBOSITY_VERBOSE = 2;
26+
// ToDo make constants public in 2.0
27+
public const VERBOSITY_VERBOSE = 2;
2728

28-
private const VERBOSITY_VERY_VERBOSE = 3;
29+
public const VERBOSITY_VERY_VERBOSE = 3;
2930

3031
public function __construct(
3132
private readonly AdapterSearchInterface $search,

src/Model/OpenSearch/Debug/SearchInformation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
*/
2828
final class SearchInformation
2929
{
30-
private const VERBOSITY_VERBOSE = 2;
30+
public const VERBOSITY_VERBOSE = 2;
3131

32-
private const VERBOSITY_VERY_VERBOSE = 3;
32+
public const VERBOSITY_VERY_VERBOSE = 3;
3333

3434
public function __construct(
3535
private readonly AdapterSearchInterface $search,

0 commit comments

Comments
 (0)