���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/img.123vid.top/vendor/kyranrana/src/main/Model/ |
<?php namespace CloudflareBypass\Model; /** * Class UAMOptions * - Extra options for bypassing UAM page. * * @package CloudflareBypass\Model * @author Kyran Rana */ class UAMOptions { /** * TRUE if verbose mode is enabled * * @var bool $verbose TRUE if verbose mode is enabled */ private $verbose = false; /** * Number of retries. * * @var int $retry Retries to bypass Cloudflare. */ private $retries = 3; /** * Delay to clearance. * * @var integer $delay Delay to clearance. */ private $delay = 5; public function __construct(){} /** * Returns TRUE if verbose mode is enabled. * * @return bool TRUE if verbose mode is enabled. */ public function isVerbose(): bool { return $this->verbose; } /** * Set to TRUE to enable verbose mode. * * @param bool $verbose TRUE to enable verbose mode. */ public function setVerbose(bool $verbose) { $this->verbose = $verbose; } /** * Gets delay to clearance * * @return int Delay to clearance */ public function getDelay(): int { return $this->delay; } /** * Gets number of retries allowed. * * @return int Number of retries. */ public function getRetries(): int { return $this->retries; } /** * Set delay to clearance * * @param int $delay Delay to clearance. */ public function setDelay(int $delay) { $this->delay = $delay; } }