diff options
Diffstat (limited to 'tests/unit/Data/SqlMap/domain/Newspaper.php')
-rw-r--r-- | tests/unit/Data/SqlMap/domain/Newspaper.php | 10 |
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; } + +} |