#include "config.h"
#endif
#include "php.h"
#include "php_test.h"
#include "test.h"
/**
* This is a sample class
*/
ZEPHIR_INIT_CLASS(Test_Hello) {
ZEPHIR_REGISTER_CLASS(Test, Hello, hello, test_hello_method_entry, 0);
/**
* This is a sample method
*/
PHP_METHOD(Test_Hello, say) {
php_printf("%s", "Hello World!");