summaryrefslogtreecommitdiffstats
path: root/tests/lib/appframework/db/EntityTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/appframework/db/EntityTest.php')
-rw-r--r--tests/lib/appframework/db/EntityTest.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/lib/appframework/db/EntityTest.php b/tests/lib/appframework/db/EntityTest.php
index 9de44b9b3ba..d98cb549422 100644
--- a/tests/lib/appframework/db/EntityTest.php
+++ b/tests/lib/appframework/db/EntityTest.php
@@ -37,10 +37,10 @@ namespace OCP\AppFramework\Db;
* @method void setPreName(string $preName)
*/
class TestEntity extends Entity {
- public $name;
- public $email;
- public $testId;
- public $preName;
+ protected $name;
+ protected $email;
+ protected $testId;
+ protected $preName;
public function __construct($name=null){
$this->addType('testId', 'integer');
@@ -220,4 +220,4 @@ class EntityTest extends \PHPUnit_Framework_TestCase {
}
-} \ No newline at end of file
+}