hello
Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : chryzalihi ( 621211) PHP Version : 8.3.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/chryzalihi/www/wp-content/languages/themes/the/ |
plugins/backwpup/vendor/Guzzle/Service/Exception/InconsistentClientTransferException.php 0000604 00000001626 15244330626 0034376 0 ustar 00 home/chryzalihi/www/wp-contentOLD <?php
namespace Guzzle\Service\Exception;
use Guzzle\Common\Exception\RuntimeException;
/**
* Command transfer exception when commands do not all use the same client
*/
class InconsistentClientTransferException extends RuntimeException
{
/**
* @var array Commands with an invalid client
*/
private $invalidCommands = array();
/**
* @param array $commands Invalid commands
*/
public function __construct(array $commands)
{
$this->invalidCommands = $commands;
parent::__construct(
'Encountered commands in a batch transfer that use inconsistent clients. The batching ' .
'strategy you use with a command transfer must divide command batches by client.'
);
}
/**
* Get the invalid commands
*
* @return array
*/
public function getCommands()
{
return $this->invalidCommands;
}
}