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/clone/wp-conte.../plugins/wordpres.../vendor_p.../psr/containe.../src
File: ContainerInterface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
/**
[2] Fix | Delete
* @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
[3] Fix | Delete
*/
[4] Fix | Delete
namespace YoastSEO_Vendor\Psr\Container;
[5] Fix | Delete
[6] Fix | Delete
/**
[7] Fix | Delete
* Describes the interface of a container that exposes methods to read its entries.
[8] Fix | Delete
*/
[9] Fix | Delete
interface ContainerInterface
[10] Fix | Delete
{
[11] Fix | Delete
/**
[12] Fix | Delete
* Finds an entry of the container by its identifier and returns it.
[13] Fix | Delete
*
[14] Fix | Delete
* @param string $id Identifier of the entry to look for.
[15] Fix | Delete
*
[16] Fix | Delete
* @throws NotFoundExceptionInterface No entry was found for **this** identifier.
[17] Fix | Delete
* @throws ContainerExceptionInterface Error while retrieving the entry.
[18] Fix | Delete
*
[19] Fix | Delete
* @return mixed Entry.
[20] Fix | Delete
*/
[21] Fix | Delete
public function get($id);
[22] Fix | Delete
/**
[23] Fix | Delete
* Returns true if the container can return an entry for the given identifier.
[24] Fix | Delete
* Returns false otherwise.
[25] Fix | Delete
*
[26] Fix | Delete
* `has($id)` returning true does not mean that `get($id)` will not throw an exception.
[27] Fix | Delete
* It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
[28] Fix | Delete
*
[29] Fix | Delete
* @param string $id Identifier of the entry to look for.
[30] Fix | Delete
*
[31] Fix | Delete
* @return bool
[32] Fix | Delete
*/
[33] Fix | Delete
public function has($id);
[34] Fix | Delete
}
[35] Fix | Delete
[36] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function