mirror of
https://github.com/Karaka-Management/oms-Tag.git
synced 2026-01-11 15:48:42 +00:00
php cs and stan fixes
This commit is contained in:
parent
43dd58324a
commit
4deee80a5f
|
|
@ -203,5 +203,4 @@ final class ApiController extends Controller
|
|||
)
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user