Skip to content

Commit

Permalink
Merge pull request #794 from ruudk/patch-1
Browse files Browse the repository at this point in the history
Add phpdoc to ApiResponse
  • Loading branch information
ob-stripe authored Nov 5, 2019
2 parents b643676 + 02e6678 commit bc38212
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions lib/ApiResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,24 @@
*/
class ApiResponse
{
/**
* @var array|CaseInsensitiveArray|null
*/
public $headers;

/**
* @var string
*/
public $body;

/**
* @var array|null
*/
public $json;

/**
* @var int
*/
public $code;

/**
Expand Down

0 comments on commit bc38212

Please sign in to comment.