Files
portal-legacy/lib/model/JobStatus.php
Chris Sewell cf140a2e97 initial commit
2012-11-28 03:55:08 -05:00

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();
}
}