Files
iTop/sources/Core/BulkChange/CellStatus_NullIssue.php
Anne-Cath dd2f6e7413 WIP
2025-09-08 15:21:34 +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');
}
}