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.../www/wp-conte.../plugins/wpforms-.../vendor_p.../symfony/css-sele.../Parser
File: ParserInterface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
/*
[2] Fix | Delete
* This file is part of the Symfony package.
[3] Fix | Delete
*
[4] Fix | Delete
* (c) Fabien Potencier <fabien@symfony.com>
[5] Fix | Delete
*
[6] Fix | Delete
* For the full copyright and license information, please view the LICENSE
[7] Fix | Delete
* file that was distributed with this source code.
[8] Fix | Delete
*/
[9] Fix | Delete
namespace WPForms\Vendor\Symfony\Component\CssSelector\Parser;
[10] Fix | Delete
[11] Fix | Delete
use WPForms\Vendor\Symfony\Component\CssSelector\Node\SelectorNode;
[12] Fix | Delete
/**
[13] Fix | Delete
* CSS selector parser interface.
[14] Fix | Delete
*
[15] Fix | Delete
* This component is a port of the Python cssselect library,
[16] Fix | Delete
* which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
[17] Fix | Delete
*
[18] Fix | Delete
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
[19] Fix | Delete
*
[20] Fix | Delete
* @internal
[21] Fix | Delete
*/
[22] Fix | Delete
interface ParserInterface
[23] Fix | Delete
{
[24] Fix | Delete
/**
[25] Fix | Delete
* Parses given selector source into an array of tokens.
[26] Fix | Delete
*
[27] Fix | Delete
* @param string $source
[28] Fix | Delete
*
[29] Fix | Delete
* @return SelectorNode[]
[30] Fix | Delete
*/
[31] Fix | Delete
public function parse($source);
[32] Fix | Delete
}
[33] Fix | Delete
[34] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function