define wrap storage

This commit is contained in:
yggverse 2024-07-28 15:45:21 +03:00
parent ba7a56ca7e
commit 3186ac6846
2 changed files with 16 additions and 10 deletions

View file

@ -16,12 +16,13 @@ abstract class Markup
// Dependencies
public Content $content;
// Extras
protected ?string $_source = null;
// Defaults
public const WRAP = 140;
// Extras
protected int $_wrap = self::WRAP;
protected ?string $_source = null;
public function __construct(
Content $content
) {