diff options
Diffstat (limited to 'tests/unit/Data/SqlMap/domain/Document.php')
-rw-r--r-- | tests/unit/Data/SqlMap/domain/Document.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/unit/Data/SqlMap/domain/Document.php b/tests/unit/Data/SqlMap/domain/Document.php new file mode 100644 index 00000000..518851e6 --- /dev/null +++ b/tests/unit/Data/SqlMap/domain/Document.php @@ -0,0 +1,14 @@ +<?php + +class Document +{ + private $_ID=''; + private $_Title=''; + + public function getID(){ return $this->_ID; } + public function setID($value){ $this->_ID = $value; } + + public function getTitle(){ return $this->_Title; } + public function setTitle($value){ $this->_Title = $value; } + +} |