Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [2.0.4] - 10-04-21

### Fixed
- Return type of callWSAA();

## [2.0.3] - 04-03-21

### Fixed
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "multinexo/php-afip-ws",
"description": "Librería PHP para interactuar con el webservice de AFIP (Argentina -> factura electrónica).",
"type": "library",
"version": "2.0.4",
"keywords": [
"afip",
"argentina",
Expand Down
2 changes: 1 addition & 1 deletion src/WSAA/Wsaa.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private static function signTRA(stdClass $service): string
*
* return Ticket de Acceso generado por AFIP en formato xml
*/
private static function callWSAA(stdClass $service, string $CMS): stdClass
private static function callWSAA(stdClass $service, string $CMS): string
{
$client = new SoapClient($service->configuracion->archivos->wsaaWsdl, [
'proxy_port' => $service->configuracion->proxyPort,
Expand Down