We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$options = [ 'strip_scheme' => false, 'text_limit' => false, 'auto_title' => false, 'escape' => true, 'link_no_scheme' => false ];
but 'text_limit' => false, is not a valid value and causes a type error in https://github.com/asika32764/php-autolink/blob/master/src/Autolink.php#L264
'text_limit' => false,
public function getTextLimit(): int|callable|null { return $this->getOption('text_limit'); }
Please note that this is a breaking change in v2.0.4
a4271a0
Version 2.0.1 code (using false) works as expected, but is not compatible with the latest 2.0.4 release even though it's a minor revision.
false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
but
'text_limit' => false,
is not a valid value and causes a type error inhttps://github.com/asika32764/php-autolink/blob/master/src/Autolink.php#L264
Please note that this is a breaking change in v2.0.4
a4271a0
Version 2.0.1 code (using
false
) works as expected, but is not compatible with the latest 2.0.4 release even though it's a minor revision.The text was updated successfully, but these errors were encountered: