Browse Source

Fix visibility

ADmad 11 years ago
parent
commit
016ecf292c
3 changed files with 3 additions and 3 deletions
  1. 1 1
      src/View/JsonView.php
  2. 1 1
      src/View/SerializedView.php
  3. 1 1
      src/View/XmlView.php

+ 1 - 1
src/View/JsonView.php

@@ -79,7 +79,7 @@ class JsonView extends SerializedView
      *
      * @var string
      */
-    public $_responseType = 'json';
+    protected $_responseType = 'json';
 
     /**
      * List of special view vars.

+ 1 - 1
src/View/SerializedView.php

@@ -28,7 +28,7 @@ class SerializedView extends View
      *
      * @var string
      */
-    public $_responseType;
+    protected $_responseType;
 
     /**
      * Constructor

+ 1 - 1
src/View/XmlView.php

@@ -78,7 +78,7 @@ class XmlView extends SerializedView
      *
      * @var string
      */
-    public $_responseType = 'xml';
+    protected $_responseType = 'xml';
 
     /**
      * List of special view vars.