Upgrade to 3.5.5
This commit is contained in:
@@ -33,27 +33,27 @@ class OptionsQuery
|
||||
protected $aliases = [];
|
||||
|
||||
/**
|
||||
* @var
|
||||
* @var array
|
||||
*/
|
||||
protected $data;
|
||||
|
||||
/**
|
||||
* @var
|
||||
* @var array|string|null
|
||||
*/
|
||||
protected $options;
|
||||
|
||||
/**
|
||||
* @var
|
||||
* @var string
|
||||
*/
|
||||
protected $query;
|
||||
|
||||
/**
|
||||
* @var
|
||||
* @var mixed
|
||||
*/
|
||||
protected $text;
|
||||
|
||||
/**
|
||||
* @var
|
||||
* @var mixed
|
||||
*/
|
||||
protected $value;
|
||||
|
||||
@@ -190,9 +190,9 @@ class OptionsQuery
|
||||
|
||||
/**
|
||||
* @param array|null $aliases
|
||||
* @return self
|
||||
* @return $this
|
||||
*/
|
||||
protected function setAliases(array $aliases = null)
|
||||
protected function setAliases(?array $aliases = null)
|
||||
{
|
||||
$this->aliases = $aliases;
|
||||
return $this;
|
||||
@@ -200,7 +200,7 @@ class OptionsQuery
|
||||
|
||||
/**
|
||||
* @param array $data
|
||||
* @return self
|
||||
* @return $this
|
||||
*/
|
||||
protected function setData(array $data)
|
||||
{
|
||||
@@ -209,8 +209,8 @@ class OptionsQuery
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $options
|
||||
* @return self
|
||||
* @param array|string|null $options
|
||||
* @return $this
|
||||
*/
|
||||
protected function setOptions($options = null)
|
||||
{
|
||||
@@ -220,7 +220,7 @@ class OptionsQuery
|
||||
|
||||
/**
|
||||
* @param string $query
|
||||
* @return self
|
||||
* @return $this
|
||||
*/
|
||||
protected function setQuery(string $query)
|
||||
{
|
||||
@@ -229,8 +229,8 @@ class OptionsQuery
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $text
|
||||
* @return self
|
||||
* @param mixed $text
|
||||
* @return $this
|
||||
*/
|
||||
protected function setText($text)
|
||||
{
|
||||
@@ -239,8 +239,8 @@ class OptionsQuery
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $value
|
||||
* @return self
|
||||
* @param mixed $value
|
||||
* @return $this
|
||||
*/
|
||||
protected function setValue($value)
|
||||
{
|
||||
|
Reference in New Issue
Block a user