Update smsAPI.php

Code display adjustment.
This commit is contained in:
Damien GUILLEM 2015-04-17 14:45:53 +02:00
parent 0818bb36fb
commit 38d73af572
1 changed files with 5 additions and 5 deletions

View File

@ -184,8 +184,8 @@
echo json_encode(array( echo json_encode(array(
'error' => self::API_ERROR_NO, 'error' => self::API_ERROR_NO,
'page' => $page, 'page' => $page,
'limit' => $limit, 'limit' => $limit,
'total' => $nbTotal, 'total' => $nbTotal,
'receiveds' => $receiveds, 'receiveds' => $receiveds,
)); ));
@ -219,10 +219,10 @@
echo json_encode(array( echo json_encode(array(
'error' => self::API_ERROR_NO, 'error' => self::API_ERROR_NO,
'page' => $page, 'page' => $page,
'limit' => $limit, 'limit' => $limit,
'total' => $nbTotal, 'total' => $nbTotal,
'sendeds' => $sendeds, 'sendeds' => $sendeds,
)); ));
} }
} }