summaryrefslogtreecommitdiff
path: root/tests/simple_unit/SqlMap/domain/Complex.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple_unit/SqlMap/domain/Complex.php')
-rw-r--r--tests/simple_unit/SqlMap/domain/Complex.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/simple_unit/SqlMap/domain/Complex.php b/tests/simple_unit/SqlMap/domain/Complex.php
new file mode 100644
index 00000000..92b500f4
--- /dev/null
+++ b/tests/simple_unit/SqlMap/domain/Complex.php
@@ -0,0 +1,11 @@
+<?php
+
+class Complex
+{
+ private $_map;
+
+ public function getMap(){ return $this->_map; }
+ public function setMap(TMap $map){ $this->_map = $map; }
+}
+
+?> \ No newline at end of file