removed obsolete optionsFrom

This commit is contained in:
2024-10-10 20:22:44 +03:00
parent fea7610665
commit dfe4576725
7 changed files with 9 additions and 48 deletions
-3
View File
@@ -21,9 +21,6 @@ class Color implements FieldInterface, RequiredInterface
public string $default = "",
public string $help = "",
public bool $readonly = false,
public string $optionsFrom = "",
public string $optionsField = "",
public bool $optionsSuggest = false,
public string $group = "",
)
{
-3
View File
@@ -24,9 +24,6 @@ class Date implements FieldInterface, RequiredInterface, MinMaxInterface
public string $default = "",
public string $help = "",
public bool $readonly = false,
public string $optionsFrom = "",
public string $optionsField = "",
public bool $optionsSuggest = false,
public string $group = "",
)
{
-3
View File
@@ -24,9 +24,6 @@ class Datetime implements FieldInterface, RequiredInterface, MinMaxInterface
public string $default = "",
public string $help = "",
public bool $readonly = false,
public string $optionsFrom = "",
public string $optionsField = "",
public bool $optionsSuggest = false,
public string $group = "",
)
{
-3
View File
@@ -24,9 +24,6 @@ class Number implements FieldInterface, RequiredInterface, MinMaxInterface
public ?float $default = null,
public bool $readonly = false,
public string $help = "",
public string $optionsFrom = "",
public string $optionsField = "",
public bool $optionsSuggest = false,
public string $group = "",
)
{
-3
View File
@@ -22,9 +22,6 @@ class Text implements FieldInterface, RequiredInterface
public string $help = "",
public string $default = "",
public bool $readonly = false,
public string $optionsFrom = "",
public string $optionsField = "",
public bool $optionsSuggest = false,
public ?array $selectOptions = null,
public string $group = "",
)