From ba2aca4491345319e9c3077ee2a962994b7dff1e Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 2 Mar 2020 22:49:01 +0100 Subject: [PATCH] php cs and stan fixes --- Theme/Backend/Components/Editor/TextView.php | 60 ++++++++++++++++++-- 1 file changed, 54 insertions(+), 6 deletions(-) diff --git a/Theme/Backend/Components/Editor/TextView.php b/Theme/Backend/Components/Editor/TextView.php index dd0b0a1..4d9b41a 100644 --- a/Theme/Backend/Components/Editor/TextView.php +++ b/Theme/Backend/Components/Editor/TextView.php @@ -30,12 +30,60 @@ use phpOMS\Views\View; */ class TextView extends View { - private string $id = ''; - private string $name = ''; - private string $form = ''; - private string $plain = ''; - private string $preview = ''; - private string $tplText = ''; + /** + * Dom id + * + * @var string + * @since 1.0.0 + */ + private string $id = ''; + + /** + * Dom name + * + * @var string + * @since 1.0.0 + */ + private string $name = ''; + + /** + * Form id + * + * @var string + * @since 1.0.0 + */ + private string $form = ''; + + /** + * Plain content + * + * @var string + * @since 1.0.0 + */ + private string $plain = ''; + + /** + * Preview content + * + * @var string + * @since 1.0.0 + */ + private string $preview = ''; + + /** + * Tpl text identifier + * + * @var string + * @since 1.0.0 + */ + private string $tplText = ''; + + /** + * Tpl value identifier + * + * @var string + * @since 1.0.0 + */ private string $tplValue = ''; /**