mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-29 05:28:44 +02:00
* N°7920 - laminas-mail is an abandoned package, replace it with symfony/mailer * Fix composer following merge
14 lines
253 B
PHP
14 lines
253 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Result\Reason;
|
|
|
|
abstract class DetailedReason implements Reason
|
|
{
|
|
protected $detailedDescription;
|
|
|
|
public function __construct(string $details)
|
|
{
|
|
$this->detailedDescription = $details;
|
|
}
|
|
}
|