Skip to content
Advertisement

Why can’t I use my instance in this trait?

I have this code

JavaScript

However I get the error $currentConfig must not be accessed before initialization. The var dump shows me this:

JavaScript

Why can’t I use my instance here?

Advertisement

Answer

The problem isn’t with using the instance, it’s just that the $currentConfig property isn’t set when you call the static method. I think the simplest way to fix the problem would be to give that property a null default value.

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement