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.../Node
File: NodeInterface.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\Node;
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* Interface for nodes.
[13] Fix | Delete
*
[14] Fix | Delete
* This component is a port of the Python cssselect library,
[15] Fix | Delete
* which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
[16] Fix | Delete
*
[17] Fix | Delete
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
[18] Fix | Delete
*
[19] Fix | Delete
* @internal
[20] Fix | Delete
*/
[21] Fix | Delete
interface NodeInterface
[22] Fix | Delete
{
[23] Fix | Delete
/**
[24] Fix | Delete
* Returns node's name.
[25] Fix | Delete
*
[26] Fix | Delete
* @return string
[27] Fix | Delete
*/
[28] Fix | Delete
public function getNodeName();
[29] Fix | Delete
/**
[30] Fix | Delete
* Returns node's specificity.
[31] Fix | Delete
*
[32] Fix | Delete
* @return Specificity
[33] Fix | Delete
*/
[34] Fix | Delete
public function getSpecificity();
[35] Fix | Delete
/**
[36] Fix | Delete
* Returns node's string representation.
[37] Fix | Delete
*
[38] Fix | Delete
* @return string
[39] Fix | Delete
*/
[40] Fix | Delete
public function __toString();
[41] Fix | Delete
}
[42] Fix | Delete
[43] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function