Api\ServiceType\ApiSaint::Saint_ListFTP PHP Method

Saint_ListFTP() public method

Method to call the operation originally named Saint.ListFTP Meta informations extracted from the WSDL - documentation: Returns a list of the ftp accounts configured for this company
public Saint_ListFTP ( ) : saint_ftp_list | boolean
return saint_ftp_list | boolean
    public function Saint_ListFTP()
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Saint.ListFTP'));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }