Laravel 10 : terminated by signal sigsegv (address boundary error)
Closed this issue · 1 comments
aeq-dev commented
Describe the bug
Using this package :Parental I'm facing an issue in this function :
Here
public function __call($name, $args)
{
if (isset($this->invokeSettingsBy) && $name === $this->invokeSettingsBy) {
return $this->settings();
}
return call_user_func(get_parent_class($this) . '::__call', $name, $args);
}
The error appears on call_user_func
To Reproduce
Steps to reproduce the behavior:
- Laravel 10
- install Parental
- Create a child
terminated by signal sigsegv (address boundary error)
Expected behavior
Able to use parental package
Desktop (please complete the following information):
- OS: Ubuntu
- Browser Firefox
- Version 20
Additional context
It was working fine on Laravel 9, but after upgrading to L10 it fails