Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
0501718421 | |||
0f00069165 |
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "itguild/forms",
|
"name": "itguild/forms",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
|
"license": "MIT",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"itguild\\forms\\": "src/"
|
"itguild\\forms\\": "src/"
|
||||||
@ -8,9 +9,11 @@
|
|||||||
},
|
},
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Kavalar"
|
"name": "Kavalar",
|
||||||
|
"email": "apuc06@mail.ru"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"minimum-stability": "dev",
|
||||||
"require": {
|
"require": {
|
||||||
"twbs/bootstrap": "5.0.2",
|
"twbs/bootstrap": "5.0.2",
|
||||||
"itguild/php-cg-select-v2": "^0.1.0",
|
"itguild/php-cg-select-v2": "^0.1.0",
|
||||||
|
@ -73,9 +73,9 @@ class Select extends BaseInput
|
|||||||
* @param $options
|
* @param $options
|
||||||
* @return $this
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function setOptions($options)
|
public function setOptions($options): static
|
||||||
{
|
{
|
||||||
$this->options = array_merge($options, $this->options);
|
$this->options = $options + $this->options;
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user