11 lines
150 B
PHP
11 lines
150 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Shaarli\Formatter\Parsedown;
|
||
|
|
||
|
class ShaarliParsedown extends \Parsedown
|
||
|
{
|
||
|
use ShaarliParsedownTrait;
|
||
|
}
|