mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Add safe mode and strict mode configurables
This commit is contained in:
parent
072f91df47
commit
c55dbb0d3f
29
src/Configurables/SafeMode.php
Normal file
29
src/Configurables/SafeMode.php
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Erusev\Parsedown\Configurables;
|
||||||
|
|
||||||
|
use Erusev\Parsedown\Configurable;
|
||||||
|
|
||||||
|
final class SafeMode implements Configurable
|
||||||
|
{
|
||||||
|
/** @var bool */
|
||||||
|
private $enabled = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param bool $enabled
|
||||||
|
*/
|
||||||
|
public function __construct($enabled)
|
||||||
|
{
|
||||||
|
$this->enabled = $enabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function enabled(): bool
|
||||||
|
{
|
||||||
|
return $this->enabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function default(): self
|
||||||
|
{
|
||||||
|
return new self(false);
|
||||||
|
}
|
||||||
|
}
|
29
src/Configurables/StrictMode.php
Normal file
29
src/Configurables/StrictMode.php
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Erusev\Parsedown\Configurables;
|
||||||
|
|
||||||
|
use Erusev\Parsedown\Configurable;
|
||||||
|
|
||||||
|
final class StrictMode implements Configurable
|
||||||
|
{
|
||||||
|
/** @var bool */
|
||||||
|
private $enabled = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param bool $enabled
|
||||||
|
*/
|
||||||
|
public function __construct($enabled)
|
||||||
|
{
|
||||||
|
$this->enabled = $enabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function enabled(): bool
|
||||||
|
{
|
||||||
|
return $this->enabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function default(): self
|
||||||
|
{
|
||||||
|
return new self(false);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user