function FileTransfer::__isset
File
- 
              core/lib/ Drupal/ Core/ FileTransfer/ FileTransfer.php, line 141 
Class
- FileTransfer
- Defines the base FileTransfer class.
Namespace
Drupal\Core\FileTransferCode
public function __isset(string $name) : bool {
  if ($name == 'connection') {
    return isset($this->connectionHandle);
  }
  if ($name == 'chroot') {
    return isset($this->chrootPath);
  }
  return FALSE;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
