Apply fixes from StyleCI

This commit is contained in:
Daniil Gentili 2018-02-18 13:02:47 +00:00 committed by StyleCI Bot
parent 99f5b9b4ce
commit 9fa37354d9

View File

@ -33,7 +33,7 @@ trait Serializable
}
if (method_exists($this, '__magic_construct')) {
$this->__magic_construct(...$params);
} else if (method_exists($this, '___construct')) {
} elseif (method_exists($this, '___construct')) {
$this->___construct(...$params);
}
}