Files
iTop/sources/Core/BulkChange/bulkchange/CellStatus_NullIssue.php
2025-09-02 18:49:32 +02:00

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