remove visibility modifier from constants again

Only supported on PHP >= 7.1.
This commit is contained in:
Sarah Hoffmann
2019-07-02 23:24:49 +02:00
parent a27a271034
commit cdc7d0fe0e
2 changed files with 4 additions and 4 deletions

View File

@@ -9,8 +9,8 @@ namespace Nominatim;
*/
class Phrase
{
public const MAX_WORDSET_LEN = 20;
public const MAX_WORDSETS = 100;
const MAX_WORDSET_LEN = 20;
const MAX_WORDSETS = 100;
// Complete phrase as a string.
private $sPhrase;