17 lines
427 B
PHP
17 lines
427 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\CommonMark\Generators;
|
|
|
|
use League\CommonMark\Extension\Mention\Generator\MentionGeneratorInterface;
|
|
use League\CommonMark\Extension\Mention\Mention;
|
|
use League\CommonMark\Node\Inline\AbstractInline;
|
|
|
|
class ContactMentionGenerator implements MentionGeneratorInterface
|
|
{
|
|
public function generateMention(Mention $mention): ?AbstractInline
|
|
{
|
|
return $mention;
|
|
}
|
|
}
|