Files
domokits/local/modules/ColissimoWs/Soap/GenerateWithAttachments.php
Laurent LE CORRE 649c92e52f Ajout des modules ColissimoWs et ColissimoLabel.php
Ne pas oublier de vérifier si les tables nécessaires sont bien créées en BDD.
2020-05-07 11:45:31 +02:00

30 lines
1.1 KiB
PHP

<?php
/*************************************************************************************/
/* Copyright (c) Franck Allimant, CQFDev */
/* email : thelia@cqfdev.fr */
/* web : http://www.cqfdev.fr */
/* */
/* For the full copyright and license information, please view the LICENSE */
/* file that was distributed with this source code. */
/*************************************************************************************/
/**
* Created by Franck Allimant, CQFDev <franck@cqfdev.fr>
* Date: 06/09/2019 01:27
*/
namespace ColissimoWs\Soap;
use ColissimoPostage\ServiceType\Generate;
class GenerateWithAttachments extends Generate
{
const DEFAULT_SOAP_CLIENT_CLASS = '\ColissimoWs\Soap\SoapClientWithAttachements';
public function getRawResponse()
{
return self::getSoapClient()->getRawResponse();
}
}