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
It fails (DCO031) because there is a return documented in the abstract method get_name() in class FooInterface, but there is no return implemented.
The documented return value is necessary, as it fully describes the abstract method and how it can be used.
Every class implementing the interface, shall know what the expected return value needs to be.
The text was updated successfully, but these errors were encountered:
If I have the following code:
It fails (DCO031) because there is a return documented in the abstract method
get_name()
in classFooInterface
, but there is no return implemented.The documented return value is necessary, as it fully describes the abstract method and how it can be used.
Every class implementing the interface, shall know what the expected return value needs to be.
The text was updated successfully, but these errors were encountered: