Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wordpres.../src/introduc.../applicat...
File: version-trait.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace Yoast\WP\SEO\Introductions\Application;
[2] Fix | Delete
[3] Fix | Delete
trait Version_Trait {
[4] Fix | Delete
[5] Fix | Delete
/**
[6] Fix | Delete
* Determines whether the version is between a min (inclusive) and max (exclusive).
[7] Fix | Delete
*
[8] Fix | Delete
* @param string $version The version to compare.
[9] Fix | Delete
* @param string $min_version The minimum version.
[10] Fix | Delete
* @param string $max_version The maximum version.
[11] Fix | Delete
*
[12] Fix | Delete
* @return bool Whether the version is between a min and max.
[13] Fix | Delete
*/
[14] Fix | Delete
private function is_version_between( $version, $min_version, $max_version ) {
[15] Fix | Delete
return ( \version_compare( $version, $min_version, '>=' )
[16] Fix | Delete
&& \version_compare( $version, $max_version, '<' )
[17] Fix | Delete
);
[18] Fix | Delete
}
[19] Fix | Delete
}
[20] Fix | Delete
[21] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function