mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
16 lines
284 B
PHP
16 lines
284 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* Subclass for representing a row from the 'client' table.
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
* @package lib.model
|
||
|
*/
|
||
|
class Client extends BaseClient
|
||
|
{
|
||
|
public function getFullAddress(){
|
||
|
return $this->getAddress().' '.$this->getCity().' '.$this->getState().' '.$this->getZip();
|
||
|
}
|
||
|
}
|