mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-10 00:34:58 +00:00
apply more cs rules for php-cs
This commit is contained in:
@@ -11,7 +11,6 @@ declare(strict_types=1);
|
||||
|
||||
namespace Chill\MainBundle\Templating;
|
||||
|
||||
use Parsedown;
|
||||
use Twig\Extension\AbstractExtension;
|
||||
use Twig\TwigFilter;
|
||||
|
||||
@@ -21,13 +20,13 @@ use Twig\TwigFilter;
|
||||
final class ChillMarkdownRenderExtension extends AbstractExtension
|
||||
{
|
||||
/**
|
||||
* @var Parsedown
|
||||
* @var \Parsedown
|
||||
*/
|
||||
protected $parsedown;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->parsedown = new Parsedown();
|
||||
$this->parsedown = new \Parsedown();
|
||||
$this->parsedown->setSafeMode(true);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user