summaryrefslogtreecommitdiff
path: root/tests/unit/Data/SqlMap/domain/Complex.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Data/SqlMap/domain/Complex.php')
-rw-r--r--tests/unit/Data/SqlMap/domain/Complex.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/unit/Data/SqlMap/domain/Complex.php b/tests/unit/Data/SqlMap/domain/Complex.php
new file mode 100644
index 00000000..01082343
--- /dev/null
+++ b/tests/unit/Data/SqlMap/domain/Complex.php
@@ -0,0 +1,9 @@
+<?php
+
+class Complex
+{
+ private $_map;
+
+ public function getMap(){ return $this->_map; }
+ public function setMap(TMap $map){ $this->_map = $map; }
+}