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.../vendor_p.../guzzleht.../promises/src
File: Is.php
<?php
[0] Fix | Delete
[1] Fix | Delete
declare (strict_types=1);
[2] Fix | Delete
namespace YoastSEO_Vendor\GuzzleHttp\Promise;
[3] Fix | Delete
[4] Fix | Delete
final class Is
[5] Fix | Delete
{
[6] Fix | Delete
/**
[7] Fix | Delete
* Returns true if a promise is pending.
[8] Fix | Delete
*/
[9] Fix | Delete
public static function pending(\YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface $promise) : bool
[10] Fix | Delete
{
[11] Fix | Delete
return $promise->getState() === \YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface::PENDING;
[12] Fix | Delete
}
[13] Fix | Delete
/**
[14] Fix | Delete
* Returns true if a promise is fulfilled or rejected.
[15] Fix | Delete
*/
[16] Fix | Delete
public static function settled(\YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface $promise) : bool
[17] Fix | Delete
{
[18] Fix | Delete
return $promise->getState() !== \YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface::PENDING;
[19] Fix | Delete
}
[20] Fix | Delete
/**
[21] Fix | Delete
* Returns true if a promise is fulfilled.
[22] Fix | Delete
*/
[23] Fix | Delete
public static function fulfilled(\YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface $promise) : bool
[24] Fix | Delete
{
[25] Fix | Delete
return $promise->getState() === \YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface::FULFILLED;
[26] Fix | Delete
}
[27] Fix | Delete
/**
[28] Fix | Delete
* Returns true if a promise is rejected.
[29] Fix | Delete
*/
[30] Fix | Delete
public static function rejected(\YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface $promise) : bool
[31] Fix | Delete
{
[32] Fix | Delete
return $promise->getState() === \YoastSEO_Vendor\GuzzleHttp\Promise\PromiseInterface::REJECTED;
[33] Fix | Delete
}
[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