blob: 08716c6d2ca971f1f913e9cd28edaa8ae8f474eb (
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; }
}
?>
|