Files
portal-legacy/lib/model/ClientPeer.php

16 lines
313 B
PHP
Raw Normal View History

2012-11-28 03:55:08 -05:00
<?php
/**
* Subclass for performing query and update operations on the 'client' table.
*
*
*
* @package lib.model
*/
class ClientPeer extends BaseClientPeer
{
public function getFullAddress(){
return $this->getAddress().' '.$this->getCity().' '.$this->getState().' '.$this->getZip();
}
}