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
Migrating to PHP8 will cause a problem with the use of the class name "Match". Recommend you change the three occurrences to "HtmlDiffMatch".
Line 342 changed to: $matches[] = new HtmlDiffMatch( count( $this->oldWords ), count( $this->newWords ), 0 );
$matches[] = new HtmlDiffMatch( count( $this->oldWords ), count( $this->newWords ), 0 );
Line 360:
if( count( $match ) != 0 ) { $operations[] = new Operation( 'equal', $match->StartInOld, $match->EndInOld(), $match->StartInNew, $match->EndInNew() ); }
changed to
$operations[] = new Operation( 'equal', $match->StartInOld, $match->EndInOld(), $match->StartInNew, $match->EndInNew() );
Line 428 changed to: return $bestMatchSize != 0 ? new HtmlDiffMatch( $bestMatchInOld, $bestMatchInNew, $bestMatchSize ) : null;
return $bestMatchSize != 0 ? new HtmlDiffMatch( $bestMatchInOld, $bestMatchInNew, $bestMatchSize ) : null;
Line 432 changed to: class HtmlDiffMatch {
class HtmlDiffMatch {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Migrating to PHP8 will cause a problem with the use of the class name "Match".
Recommend you change the three occurrences to "HtmlDiffMatch".
Line 342 changed to:
$matches[] = new HtmlDiffMatch( count( $this->oldWords ), count( $this->newWords ), 0 );
Line 360:
changed to
Line 428 changed to:
return $bestMatchSize != 0 ? new HtmlDiffMatch( $bestMatchInOld, $bestMatchInNew, $bestMatchSize ) : null;
Line 432 changed to:
class HtmlDiffMatch {
The text was updated successfully, but these errors were encountered: