If I declare an interface in PHPed,
interface outputGenerator
{
public function getOutputHTML();
} |
Does PHPed then have a tool that can generate the functions in my class that I need to implement.
I.e.
Quote: |
class formHandler() implements outputGenerator
{
private $aVariable;
public function __construct($someValue)
{
$this->aVariable = $someValue;
}
// something that can insert the interfaces below
public function getOutputHTML() // <-- this function stub was created by PHPed interface tool ????
{
echo ("<h1>" . $this->aVariable . " </h1>
}
} |
Does such a code complete tool exists? Visual studio has it, and it is so nice.