Tagged Questions

0
votes
2answers
176 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(); } ...