Lines Matching refs:transport
26 * Default transport.
55 * @param array $params OPTIONAL Connection params: host, port, transport, timeout. All are optional
132 return $this->hasParam('transport') ? $this->getParam('transport') : self::DEFAULT_TRANSPORT;
136 * @param array|string $transport
140 public function setTransport($transport)
142 return $this->setParam('transport', $transport);
245 * Returns an instance of the transport type.
247 * @throws InvalidException If invalid transport type
253 $transport = $this->getTransport();
255 return AbstractTransport::create($transport, $this);