php cs and stan fixes

This commit is contained in:
Dennis Eichhorn 2020-03-02 22:49:01 +01:00
parent 9747c036ab
commit ba2aca4491

View File

@ -30,12 +30,60 @@ use phpOMS\Views\View;
*/ */
class TextView extends View class TextView extends View
{ {
private string $id = ''; /**
private string $name = ''; * Dom id
private string $form = ''; *
private string $plain = ''; * @var string
private string $preview = ''; * @since 1.0.0
private string $tplText = ''; */
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 = ''; private string $tplValue = '';
/** /**