It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
The doc-type $this; could not be parsed: Expected "|" or "end of type", but got ";" at position 5. (view supported doc-types)
This check marks PHPDoc comments that could not be parsed by our parser. To see
which comment annotations we can parse, please refer to our documentation on
supported doc-types.
Loading history...
33
*/
34
public function fillFromArray(array $params)
35
{
36
$expectedParams = $this->toArray();
37
foreach ($expectedParams as $key => $value) {
38
if (array_key_exists($key, $params)) {
39
$this->$key = $params[$key];
40
} else {
41
$this->$key = $value;
42
}
43
}
44
return $this;
45
}
46
47
/**
48
* Get object converter exclude fields
49
*
50
* @return array
51
*/
52
protected function getObjectConverterExcludeFields()
53
{
54
return [];
55
}
56
57
/**
58
* @param mixed $value
59
* @return bool
60
*/
61
protected function checkClassParamIsObjectConverter($value)