Skip to content

Commit

Permalink
Fix visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed May 8, 2015
1 parent 62f7537 commit 016ecf2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/View/JsonView.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class JsonView extends SerializedView
*
* @var string
*/
public $_responseType = 'json';
protected $_responseType = 'json';

/**
* List of special view vars.
Expand Down
2 changes: 1 addition & 1 deletion src/View/SerializedView.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class SerializedView extends View
*
* @var string
*/
public $_responseType;
protected $_responseType;

/**
* Constructor
Expand Down
2 changes: 1 addition & 1 deletion src/View/XmlView.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class XmlView extends SerializedView
*
* @var string
*/
public $_responseType = 'xml';
protected $_responseType = 'xml';

/**
* List of special view vars.
Expand Down

0 comments on commit 016ecf2

Please sign in to comment.