php cs and stan fixes

This commit is contained in:
Dennis Eichhorn 2020-03-02 22:49:01 +01:00
parent 43dd58324a
commit 4deee80a5f
2 changed files with 23 additions and 4 deletions

View File

@ -203,5 +203,4 @@ final class ApiController extends Controller
)
);
}
}

View File

@ -30,9 +30,29 @@ use phpOMS\Views\View;
*/
class BaseView extends View
{
private $id = '';
private $name = '';
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;
/**
* Dom name
*
* @var string
* @since 1.0.0
*/
private string $name = '';
/**
* {@inheritdoc}