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
An implementing class may specify a property with an appropriate access level to satisfy an accessor declaration requirement of an interface.
interface i {
public$Seconds { get; }
}
class TimePeriod implements i {
/* Satisfies interface implementation requirements of interface i */public$Seconds;
}