Ejemplo n.º 1
0
 /**
  * Get a working transport
  *
  * @return Requests_Transport
  */
 protected static function get_transport()
 {
     if (!is_null(self::$transport)) {
         return new self::$transport();
     }
     if (empty(self::$transports)) {
         self::$transports = array('Requests_Transport_cURL', 'Requests_Transport_fsockopen');
     }
     // Find us a working transport
     foreach (self::$transports as $class) {
         if (!class_exists($class)) {
             continue;
         }
         $result = call_user_func(array($class, 'test'));
         if ($result) {
             self::$transport = $class;
             break;
         }
     }
     if (self::$transport === null) {
         throw new Requests_Exception('No working transports found', 'notransport', self::$transports);
     }
     return new self::$transport();
 }
Ejemplo n.º 2
0
 /**
  * Get a working transport
  *
  * @throws Requests_Exception If no valid transport is found (`notransport`)
  * @return Requests_Transport
  */
 protected static function get_transport()
 {
     // Caching code, don't bother testing coverage
     // @codeCoverageIgnoreStart
     if (self::$transport !== null) {
         return new self::$transport();
     }
     // @codeCoverageIgnoreEnd
     if (empty(self::$transports)) {
         self::$transports = ['Requests_Transport_cURL', 'Requests_Transport_fsockopen'];
     }
     // Find us a working transport
     foreach (self::$transports as $class) {
         if (!class_exists($class)) {
             continue;
         }
         $result = call_user_func([$class, 'test']);
         if ($result) {
             self::$transport = $class;
             break;
         }
     }
     if (self::$transport === null) {
         throw new Requests_Exception('No working transports found', 'notransport', self::$transports);
     }
     return new self::$transport();
 }