php cs and stan fixes

This commit is contained in:
Dennis Eichhorn 2020-03-02 22:49:01 +01:00
parent edb12b49a1
commit f9c943466a
5 changed files with 59 additions and 8 deletions

View File

@ -30,7 +30,13 @@ use phpOMS\Views\View;
*/ */
class DepartmentTagSelectorPopupView extends View class DepartmentTagSelectorPopupView extends View
{ {
private $id = ''; /**
* Dom id
*
* @var string
* @since 1.0.0
*/
private string $id = '';
/** /**
* {@inheritdoc} * {@inheritdoc}

View File

@ -30,8 +30,21 @@ use phpOMS\Views\View;
*/ */
class DepartmentTagSelectorView extends View class DepartmentTagSelectorView extends View
{ {
private $id = ''; /**
private $isRequired = false; * Dom id
*
* @var string
* @since 1.0.0
*/
private string $id = '';
/**
* Is required
*
* @var bool
* @since 1.0.0
*/
private bool $isRequired = false;
/** /**
* {@inheritdoc} * {@inheritdoc}

View File

@ -30,8 +30,21 @@ use phpOMS\Views\View;
*/ */
class PositionTagSelectorView extends View class PositionTagSelectorView extends View
{ {
private $id = ''; /**
private $isRequired = false; * Dom id
*
* @var string
* @since 1.0.0
*/
private string $id = '';
/**
* Is required
*
* @var bool
* @since 1.0.0
*/
private bool $isRequired = false;
/** /**
* {@inheritdoc} * {@inheritdoc}

View File

@ -30,7 +30,13 @@ use phpOMS\Views\View;
*/ */
class UnitTagSelectorPopupView extends View class UnitTagSelectorPopupView extends View
{ {
private $id = ''; /**
* Dom id
*
* @var string
* @since 1.0.0
*/
private string $id = '';
/** /**
* {@inheritdoc} * {@inheritdoc}

View File

@ -30,8 +30,21 @@ use phpOMS\Views\View;
*/ */
class UnitTagSelectorView extends View class UnitTagSelectorView extends View
{ {
private $id = ''; /**
private $isRequired = false; * Dom id
*
* @var string
* @since 1.0.0
*/
private string $id = '';
/**
* Is required
*
* @var bool
* @since 1.0.0
*/
private bool $isRequired = false;
/** /**
* {@inheritdoc} * {@inheritdoc}