mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
17 lines
223 B
PHP
Executable File
17 lines
223 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Subclass for representing a row from the 'job_status' table.
|
|
*
|
|
*
|
|
*
|
|
* @package lib.model
|
|
*/
|
|
class JobStatus extends BaseJobStatus
|
|
{
|
|
public function __toString()
|
|
{
|
|
return $this->getStatusName();
|
|
}
|
|
}
|