I am getting interface testInterface not found error in phalcon.
<?php
class test implements testInterface
{
public function __construct()
{
}
public function testMethod()
{
}
}
interface testInterface
{
public function testMethod();
}
?>