* @license http://www.apache.org/licenses/LICENSE-2.0 * @link http://phpsx.org */ class Options implements OptionsInterface { /** @var boolean */ protected $allowRedirects; /** @var string */ protected $cert; /** @var string */ protected $proxy; /** @var string */ protected $sslKey; /** @var boolean */ protected $verify; /** @var float */ protected $timeout; /** @var float */ protected $version; /** @var string|resource */ protected $sink; /** * @inheritdoc */ public function getAllowRedirects() { return $this->allowRedirects; } /** * @param boolean $allowRedirects */ public function setAllowRedirects($allowRedirects) { $this->allowRedirects = $allowRedirects; } /** * @inheritdoc */ public function getCert() { return $this->cert; } /** * @param string $cert */ public function setCert($cert) { $this->cert = $cert; } /** * @inheritdoc */ public function getProxy() { return $this->proxy; } /** * @param string $proxy */ public function setProxy($proxy) { $this->proxy = $proxy; } /** * @inheritdoc */ public function getSslKey() { return $this->sslKey; } /** * @param string $sslKey */ public function setSslKey($sslKey) { $this->sslKey = $sslKey; } /** * @inheritdoc */ public function getVerify() { return $this->verify; } /** * @param boolean $verify */ public function setVerify($verify) { $this->verify = $verify; } /** * @inheritdoc */ public function getTimeout() { return $this->timeout; } /** * @param float $timeout */ public function setTimeout($timeout) { $this->timeout = $timeout; } /** * @inheritdoc */ public function getVersion() { return $this->version; } /** * @param float $version */ public function setVersion(float $version) { $this->version = $version; } /** * @return resource|string */ public function getSink() { return $this->sink; } /** * @param resource|string $sink */ public function setSink($sink): void { $this->sink = $sink; } } __halt_compiler();----SIGNATURE:----LTM4u2dUEvDbHKRTN54dRgr2CeOB9K8RNiCRt18ZOshWAaVwmS0tvqSeKxv76ZtHTuctTd5iXCZVFEGCOwDhrVH+Y9J5XYA4I7gPCC+KckgeDLfgE6QIhQ6Y2heAT9DaCSwnbzaRZ2zv1CVA2aIfszYUzRkb6yWosS1+PYLwdJVY/HAOZ0W/b1+iYscNbF+wj68vLkC4X3ootlamvxkUU8WhhW9AqDuNHiHFt9EPzjf0JWnvAbS7CY5GbwNOiGAyt2tDkEG2UJVGunC+uMZo42y/yUjlCqst1lRNhpd/UkyJcK2ZUBvUctpIdJrl7/A0JltlQMsK0vQkrQZFteAHdniOf5cdQKq2Om/iYomzj1aqLzTcArqEgZTILvndZ/ntsapZ89h6FTkhqhaCMvCr+41T5ZLjF32UppfRawfnduc1gNTCajh9la/Ho/4sd93vMEzIcNiPLCPHvz/9QhaG64DAd/d6ssjcgDj8wEsEkoit64MyJIadWb1Ol0lgUBgdxb3o250PoxHAHb/6Ekp6vDXeY7CL4QHYaZDFRPJ+8dk9mVN5uJPYYEpKFoGL+92IqE46RKRQQnsCfWv8Bj1ms71Qqk/PDSANpZmUy4tHsMXzlZhkF0/cIbu4HfhmSASyDqdBrRtemjYD/3B0DF0aIId0kuSYLxVK2bg6/nlMWR4=----ATTACHMENT:----ODI4ODkxMjY4OTYwNDEzNSA2MjMyMTA3ODkyMTM4MjggMjc3OTk5MTUyNjU5MjE2Mg==