for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Xetaravel\Markdown\Emoji;
use League\CommonMark\Environment\EnvironmentBuilderInterface;
use League\CommonMark\Extension\ExtensionInterface;
final class EmojiExtension implements ExtensionInterface
{
public function register(EnvironmentBuilderInterface $environment): void
$environment->addInlineParser(new EmojiParser());
}