Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit cea69fb9 authored by Akhil's avatar Akhil
Browse files

Make captchaservice constants private

parent 08298b6b
Loading
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -8,11 +8,11 @@ use OCP\ISession;

class CaptchaService {
	private $session;
	public const WIDTH = 80;
	public const HEIGHT = 40;
	public const NUMBERS = '123456789';
	public const SYMBOLS = '+-';
	public const NOISE_LEVEL = 13;
	private const WIDTH = 80;
	private const HEIGHT = 40;
	private const NUMBERS = '123456789';
	private const SYMBOLS = '+-';
	private const NOISE_LEVEL = 13;
	public const CAPTCHA_RESULT_KEY = 'captcha_result';

	public function __construct(ISession $session) {