From 5f80c1804b561b6957e4232b7f041a1264981dad Mon Sep 17 00:00:00 2001 From: Ethan Finlay Date: Tue, 11 Oct 2022 13:26:36 -0400 Subject: [PATCH] updating text limit size to be consistent with frontend --- src/Rule/BaseRule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Rule/BaseRule.php b/src/Rule/BaseRule.php index 61dc5b1..3e551d5 100644 --- a/src/Rule/BaseRule.php +++ b/src/Rule/BaseRule.php @@ -18,7 +18,7 @@ class BaseRule implements PhpAllyRuleInterface { protected $lang; protected $strings = array('en' => ''); - const ALT_TEXT_LENGTH_LIMIT = 125; + const ALT_TEXT_LENGTH_LIMIT = 150; const DOC_LENGTH = 1500; const MAX_WORD_COUNT = 3000;