Edit File by line
/home/zeestwma/redstone.../wp-inclu.../SimplePi.../src
File: RegistryAware.php
<?php
[0] Fix | Delete
[1] Fix | Delete
// SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
[2] Fix | Delete
// SPDX-License-Identifier: BSD-3-Clause
[3] Fix | Delete
[4] Fix | Delete
declare(strict_types=1);
[5] Fix | Delete
[6] Fix | Delete
namespace SimplePie;
[7] Fix | Delete
[8] Fix | Delete
/**
[9] Fix | Delete
* Handles the injection of Registry into other class
[10] Fix | Delete
*
[11] Fix | Delete
* {@see \SimplePie\SimplePie::get_registry()}
[12] Fix | Delete
*/
[13] Fix | Delete
interface RegistryAware
[14] Fix | Delete
{
[15] Fix | Delete
/**
[16] Fix | Delete
* Set the Registry into the class
[17] Fix | Delete
*
[18] Fix | Delete
* @return void
[19] Fix | Delete
*/
[20] Fix | Delete
public function set_registry(Registry $registry);
[21] Fix | Delete
}
[22] Fix | Delete
[23] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function