blob: 4eb56aa2f3a4fd9be03eb12a6eff69a4a0263fd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
class Newspaper extends Document
{
private $_City='';
public function getCity(){ return $this->_City; }
public function setCity($value){ $this->_City = $value; }
}
?>
|