Tagged Questions
1
vote
4answers
577 views
In UML, do you have to show the concrete implementation of an abstract method?
I'm drawing some UML in which a concrete class inherits from an abstract class which defines a pure virtual method. Is it required to show this method in the concrete class as well? It's implied by ...
0
votes
2answers
164 views
PHP: Abstract method within an interface
why cannot I declare an abstract method within an interface? This is my code. Thank you.
<?php
interface Connection {
public abstract function connect();
public function getConnection();
}
...