Apply fixes from StyleCI (#426)

This commit is contained in:
Tobias Nyholm 2017-12-07 22:53:16 +01:00 committed by GitHub
parent b415076e45
commit 78b05dc58e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,18 +22,20 @@ final class IndexResponse implements ApiResponse, PagingProvider
/**
* Array to store a list of Unsubscribe items from
* index response
* index response.
*
* @see Mailgun/Model/Suppression/Unsubscribe/Unsubscribe
*
* @var Unsubscribe[]
*/
private $items = [];
/**
* Store the total number of Unsubscribe items
* Store the total number of Unsubscribe items.
*
* @see Mailgun/Model/Suppression/Unsubscribe/Unsubscribe
* @var integer
*
* @var int
*/
private $totalCount;
@ -50,7 +52,7 @@ final class IndexResponse implements ApiResponse, PagingProvider
}
/**
* Allow create the unsubscribe items with paging
* Allow create the unsubscribe items with paging.
*
* @param array $data
*
@ -69,7 +71,7 @@ final class IndexResponse implements ApiResponse, PagingProvider
}
/**
* Get the Unsusbscribe item models from the response
* Get the Unsusbscribe item models from the response.
*
* @see Mailgun/Model/Suppression/Unsubscribe/Unsubscribe
*
@ -81,11 +83,11 @@ final class IndexResponse implements ApiResponse, PagingProvider
}
/**
* Get the total count of Unsusbscribe in index response
* Get the total count of Unsusbscribe in index response.
*
* @see Mailgun/Model/Suppression/Unsubscribe/Unsubscribe
*
* @return integer
* @return int
*/
public function getTotalCount()
{