Translatable Plugin - getLocaleLabelUsing
Am I missing something or should
getLocaleLabelUsing
return $this
?3 Replies
I dont understand what you mean but it’s a getter function. Why you think it should return “$this”?
In fact it is a sort of setter method:
Right now we can not use the method within the service provider.
Because it needs to return itself, which it doenst.
GitHub
Make getLocaleLabelUsing usable in service provider by johanmolen ·...
Right now we can not do the following within the panel service providers:
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
S...