mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
16 lines
313 B
PHP
Executable File
16 lines
313 B
PHP
Executable File
<?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();
|
|
}
|
|
}
|