diff options
Diffstat (limited to 'tests/simple_unit/SqlMap/domain/Complex.php')
-rw-r--r-- | tests/simple_unit/SqlMap/domain/Complex.php | 11 |
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 |