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/flow-flo.../libs/cakephp/core/Retry
File: RetryStrategyInterface.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
[2] Fix | Delete
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
[3] Fix | Delete
*
[4] Fix | Delete
* Licensed under The MIT License
[5] Fix | Delete
* For full copyright and license information, please see the LICENSE.txt
[6] Fix | Delete
* Redistributions of files must retain the above copyright notice.
[7] Fix | Delete
*
[8] Fix | Delete
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
[9] Fix | Delete
* @link https://cakephp.org CakePHP(tm) Project
[10] Fix | Delete
* @since 3.6.0
[11] Fix | Delete
* @license https://opensource.org/licenses/mit-license.php MIT License
[12] Fix | Delete
*/
[13] Fix | Delete
namespace Cake\Core\Retry;
[14] Fix | Delete
[15] Fix | Delete
use Exception;
[16] Fix | Delete
[17] Fix | Delete
/**
[18] Fix | Delete
* Used to instruct a CommandRetry object on whether or not a retry
[19] Fix | Delete
* for an action should be performed
[20] Fix | Delete
*/
[21] Fix | Delete
interface RetryStrategyInterface
[22] Fix | Delete
{
[23] Fix | Delete
/**
[24] Fix | Delete
* Returns true if the action can be retried, false otherwise.
[25] Fix | Delete
*
[26] Fix | Delete
* @param \Exception $exception The exception that caused the action to fail
[27] Fix | Delete
* @param int $retryCount The number of times the action has been already called
[28] Fix | Delete
* @return bool Whether or not it is OK to retry the action
[29] Fix | Delete
*/
[30] Fix | Delete
public function shouldRetry(Exception $exception, $retryCount);
[31] Fix | Delete
}
[32] Fix | Delete
[33] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function