mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-04 00:24:14 +01:00
14 lines
259 B
PHP
14 lines
259 B
PHP
<?php
|
|
|
|
class CellStatus_NullIssue extends CellStatus_Issue
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct(null, null, null);
|
|
}
|
|
|
|
public function GetDescription()
|
|
{
|
|
return Dict::S('UI:CSVReport-Value-Missing');
|
|
}
|
|
} |