A magical tool that will make it easy to handle chat messages
$ composer require protasevich/messages-handler
<?php
use Protasevich\MessagesHandler;
class App
{
public function execute($content)
{
$messagesHandler = new MessagesHandler();
return $messagesHandler->prepareLinks($content);
}
}
- Replace text links with real HTML note
$ php vendor/bin/phpunit