Skip to content

Commit c6b1c35

Browse files
committed
fix spaces
1 parent 61c0b70 commit c6b1c35

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

src/repository.c

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -601,18 +601,20 @@ PHP_METHOD(git_repository, open3)
601601
}
602602
}
603603

604+
604605
PHPAPI function_entry php_git_repository_methods[] = {
605-
PHP_ME(git_repository, __construct, arginfo_git_construct, ZEND_ACC_PUBLIC)
606-
PHP_ME(git_repository, getCommit, arginfo_git_get_commit, ZEND_ACC_PUBLIC)
607-
PHP_ME(git_repository, getObject, arginfo_git_get_object, ZEND_ACC_PUBLIC)
608-
PHP_ME(git_repository, getIndex, NULL, ZEND_ACC_PUBLIC)
609-
PHP_ME(git_repository, lookupRef, arginfo_git_lookup_ref, ZEND_ACC_PUBLIC)
610-
PHP_ME(git_repository, getWalker, arginfo_git_walker, ZEND_ACC_PUBLIC)
611-
PHP_ME(git_repository, getTree, arginfo_git_get_tree, ZEND_ACC_PUBLIC)
612-
PHP_ME(git_repository, init, arginfo_git_init, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
613-
PHP_ME(git_repository, addBackend, arginfo_git_add_backend, ZEND_ACC_PUBLIC)
614-
PHP_ME(git_repository, addAlternate, arginfo_git_add_alternate, ZEND_ACC_PUBLIC)
615-
PHP_ME(git_repository, open3, arginfo_git_open3, ZEND_ACC_PUBLIC)
606+
PHP_ME(git_repository, __construct, arginfo_git_construct, ZEND_ACC_PUBLIC)
607+
PHP_ME(git_repository, getCommit, arginfo_git_get_commit, ZEND_ACC_PUBLIC)
608+
PHP_ME(git_repository, getObject, arginfo_git_get_object, ZEND_ACC_PUBLIC)
609+
PHP_ME(git_repository, getIndex, NULL, ZEND_ACC_PUBLIC)
610+
PHP_ME(git_repository, lookupRef, arginfo_git_lookup_ref, ZEND_ACC_PUBLIC)
611+
PHP_ME(git_repository, getWalker, arginfo_git_walker, ZEND_ACC_PUBLIC)
612+
PHP_ME(git_repository, getTree, arginfo_git_get_tree, ZEND_ACC_PUBLIC)
613+
PHP_ME(git_repository, init, arginfo_git_init, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
614+
PHP_ME(git_repository, addBackend, arginfo_git_add_backend, ZEND_ACC_PUBLIC)
615+
PHP_ME(git_repository, addAlternate, arginfo_git_add_alternate, ZEND_ACC_PUBLIC)
616+
PHP_ME(git_repository, open3, arginfo_git_open3, ZEND_ACC_PUBLIC)
617+
PHP_ME(git_repository, getReferences, arginfo_git_get_references, ZEND_ACC_PUBLIC)
616618
{NULL, NULL, NULL}
617619
};
618620

0 commit comments

Comments
 (0)