mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
initial commit
This commit is contained in:
15
lib/model/Client.php
Executable file
15
lib/model/Client.php
Executable file
@ -0,0 +1,15 @@
|
||||
<?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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user