Hi,
i'm trying to extend phalcon in zephir, without success. Lets say i have created my own zephir extension wiht own class:
zephir init utils
namespace Utils;
class Greeting extends \Phalcon\Mvc\User\Component {
public static function say() {
echo "hello world!";
}
}
while compiling the following error is thrown.
PHP Fatal error: Call to undefined method Zephir\ClassDefinitionRuntime::isInternal() in /opt/zephir/Library/ClassDefinition.php on line 833
This error occurs every time when i try ty extend classes of the phalcan framework. Can it be because phalcon and my extension are not in the same directory?
Thanks