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/wordpres.../src/promotio.../applicat...
File: promotion-manager-interface.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace Yoast\WP\SEO\Promotions\Application;
[2] Fix | Delete
[3] Fix | Delete
/**
[4] Fix | Delete
* Interface for the promotion manager.
[5] Fix | Delete
*/
[6] Fix | Delete
interface Promotion_Manager_Interface {
[7] Fix | Delete
[8] Fix | Delete
/**
[9] Fix | Delete
* Whether the promotion is effective.
[10] Fix | Delete
*
[11] Fix | Delete
* @param string $promotion_name The name of the promotion.
[12] Fix | Delete
*
[13] Fix | Delete
* @return bool Whether the promotion is effective.
[14] Fix | Delete
*/
[15] Fix | Delete
public function is( string $promotion_name ): bool;
[16] Fix | Delete
[17] Fix | Delete
/**
[18] Fix | Delete
* Get the list of promotions.
[19] Fix | Delete
*
[20] Fix | Delete
* @return array The list of promotions.
[21] Fix | Delete
*/
[22] Fix | Delete
public function get_promotions_list(): array;
[23] Fix | Delete
}
[24] Fix | Delete
[25] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function