You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for reporting this - unfortunately there's no support for interfaces in Uniter just yet. It's on my roadmap to be implemented at some point soon.
There is now partial interface support in Uniter - constants defined on the interface are accessible from the interface or from classes that implement it, for example:
<?phpinterface Yopyop {
consta = 4;
}
class Test implements Yopyop {}
print Test::a;
I've tried
I've got :
Did I miss something ? 👓
The text was updated successfully, but these errors were encountered: