mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
11 lines
164 B
PHP
11 lines
164 B
PHP
<?php
|
|
|
|
namespace Erusev\Parsedown\Configurables;
|
|
|
|
use Erusev\Parsedown\Configurable;
|
|
|
|
final class SafeMode implements Configurable
|
|
{
|
|
use BooleanConfigurable;
|
|
}
|