OSS\OssClient::isUseSSL PHP Метод

isUseSSL() публичный Метод

public isUseSSL ( ) : boolean
Результат boolean
    public function isUseSSL()
    {
        return $this->useSSL;
    }

Usage Example

 public function testConstrunct7()
 {
     try {
         $ossClient = new OssClient(Config::OSS_ACCESS_ID, Config::OSS_ACCESS_KEY, "http://123.123.123.1");
         $this->assertFalse($ossClient->isUseSSL());
     } catch (OssException $e) {
         $this->assertTrue(false);
     }
 }
All Usage Examples Of OSS\OssClient::isUseSSL