mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-04 16:44:11 +01:00
16 lines
282 B
PHP
16 lines
282 B
PHP
<?php
|
|
|
|
/**
|
|
* RowStatus
|
|
* A series of classes, keeping the information about a given row: could it be changed or not (and why)?
|
|
*
|
|
* @package iTopORM
|
|
*/
|
|
abstract class RowStatus
|
|
{
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
abstract public function GetDescription();
|
|
} |