summaryrefslogtreecommitdiff
path: root/tests/unit/Data/SqlMap/domain/Newspaper.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Data/SqlMap/domain/Newspaper.php')
-rw-r--r--tests/unit/Data/SqlMap/domain/Newspaper.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/unit/Data/SqlMap/domain/Newspaper.php b/tests/unit/Data/SqlMap/domain/Newspaper.php
new file mode 100644
index 00000000..12ebce5b
--- /dev/null
+++ b/tests/unit/Data/SqlMap/domain/Newspaper.php
@@ -0,0 +1,10 @@
+<?php
+
+class Newspaper extends Document
+{
+ private $_City='';
+
+ public function getCity(){ return $this->_City; }
+ public function setCity($value){ $this->_City = $value; }
+
+}