We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3686682 commit ea6568eCopy full SHA for ea6568e
2 files changed
php_git2.h
@@ -85,6 +85,8 @@ enum php_git2_resource_type {
85
PHP_GIT2_TYPE_CONFIG,
86
PHP_GIT2_TYPE_OBJECT,
87
PHP_GIT2_TYPE_INDEX,
88
+ PHP_GIT2_TYPE_ODB,
89
+ PHP_GIT2_TYPE_REFDB,
90
};
91
92
typedef struct php_git2_t {
@@ -101,6 +103,8 @@ typedef struct php_git2_t {
101
103
git_config *config;
102
104
git_object *object;
105
git_index *index;
106
+ git_odb *odb;
107
+ git_refdb *refdb;
108
} v;
109
int should_free_v;
110
int resource_id;
0 commit comments