Skip to content

Commit

Permalink
change protected properties into public properties
Browse files Browse the repository at this point in the history
  • Loading branch information
DyanGalih committed Apr 19, 2020
1 parent 361cd93 commit e488980
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Responses/AbstractResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ abstract class AbstractResponse
/**
* @var bool
*/
protected $status;
public $status;
/**
* @var string
*/
protected $message;
public $message;

/**
* @return bool
Expand Down

0 comments on commit e488980

Please sign in to comment.