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/sitepres.../lib/twig/src/NodeVisi...
File: NodeVisitorInterface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
/*
[2] Fix | Delete
* This file is part of Twig.
[3] Fix | Delete
*
[4] Fix | Delete
* (c) Fabien Potencier
[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 WPML\Core\Twig\NodeVisitor;
[10] Fix | Delete
[11] Fix | Delete
use WPML\Core\Twig\Environment;
[12] Fix | Delete
/**
[13] Fix | Delete
* Interface for node visitor classes.
[14] Fix | Delete
*
[15] Fix | Delete
* @author Fabien Potencier <fabien@symfony.com>
[16] Fix | Delete
*/
[17] Fix | Delete
interface NodeVisitorInterface
[18] Fix | Delete
{
[19] Fix | Delete
/**
[20] Fix | Delete
* Called before child nodes are visited.
[21] Fix | Delete
*
[22] Fix | Delete
* @return \Twig_NodeInterface The modified node
[23] Fix | Delete
*/
[24] Fix | Delete
public function enterNode(\WPML\Core\Twig_NodeInterface $node, \WPML\Core\Twig\Environment $env);
[25] Fix | Delete
/**
[26] Fix | Delete
* Called after child nodes are visited.
[27] Fix | Delete
*
[28] Fix | Delete
* @return \Twig_NodeInterface|false|null The modified node or null if the node must be removed
[29] Fix | Delete
*/
[30] Fix | Delete
public function leaveNode(\WPML\Core\Twig_NodeInterface $node, \WPML\Core\Twig\Environment $env);
[31] Fix | Delete
/**
[32] Fix | Delete
* Returns the priority for this visitor.
[33] Fix | Delete
*
[34] Fix | Delete
* Priority should be between -10 and 10 (0 is the default).
[35] Fix | Delete
*
[36] Fix | Delete
* @return int The priority level
[37] Fix | Delete
*/
[38] Fix | Delete
public function getPriority();
[39] Fix | Delete
}
[40] Fix | Delete
\class_alias('WPML\\Core\\Twig\\NodeVisitor\\NodeVisitorInterface', 'WPML\\Core\\Twig_NodeVisitorInterface');
[41] Fix | Delete
// Ensure that the aliased name is loaded to keep BC for classes implementing the typehint with the old aliased name.
[42] Fix | Delete
\class_exists('WPML\\Core\\Twig\\Environment');
[43] Fix | Delete
[44] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function