This commit is contained in:
Anne-Cath
2025-09-08 15:12:21 +02:00
parent ab4993debe
commit dd2f6e7413
29 changed files with 261 additions and 275 deletions

View File

@@ -0,0 +1,22 @@
<?php
/**
* class dedicated to testability
* not used/ignored in csv imports UI/CLI
* @since 3.1.0 N°5305
*/
class RowStatus_Error extends RowStatus
{
/** @var string */
protected $m_sError;
public function __construct($sError)
{
$this->m_sError = $sError;
}
public function GetDescription()
{
return $this->m_sError;
}
}