diff options
Diffstat (limited to 'tests/unit/SQLMap/domain/Newspaper.php')
-rw-r--r-- | tests/unit/SQLMap/domain/Newspaper.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/unit/SQLMap/domain/Newspaper.php b/tests/unit/SQLMap/domain/Newspaper.php new file mode 100644 index 00000000..4eb56aa2 --- /dev/null +++ b/tests/unit/SQLMap/domain/Newspaper.php @@ -0,0 +1,12 @@ +<?php
+
+class Newspaper extends Document
+{
+ private $_City='';
+
+ public function getCity(){ return $this->_City; }
+ public function setCity($value){ $this->_City = $value; }
+
+}
+
+?>
\ No newline at end of file |