summaryrefslogtreecommitdiff
path: root/tests/simple_unit/SqlMap/domain/Newspaper.php
blob: 12ebce5b1bc55dceb7463648970c1223c7675742 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

class Newspaper extends Document
{
	private $_City='';

	public function getCity(){ return $this->_City; }
	public function setCity($value){ $this->_City = $value; }

}