@@ -121,14 +121,14 @@ public function mock()
121
121
122
122
$ reflectionMethod = new \ReflectionMethod ($ this ->_className , $ this ->_methodName );
123
123
if ($ reflectionMethod ->isPrivate ()) {
124
- $ flags = RUNKIT_ACC_PRIVATE ;
124
+ $ flags = RUNKIT7_ACC_PRIVATE ;
125
125
} elseif ($ reflectionMethod ->isProtected ()) {
126
- $ flags = RUNKIT_ACC_PROTECTED ;
126
+ $ flags = RUNKIT7_ACC_PROTECTED ;
127
127
} else {
128
- $ flags = RUNKIT_ACC_PUBLIC ;
128
+ $ flags = RUNKIT7_ACC_PUBLIC ;
129
129
}
130
130
if ($ reflectionMethod ->isStatic ()) {
131
- $ flags |= RUNKIT_ACC_STATIC ;
131
+ $ flags |= RUNKIT7_ACC_STATIC ;
132
132
}
133
133
134
134
$ reflectionClosure = new \ReflectionFunction ($ this ->_closure );
@@ -148,16 +148,16 @@ public function mock()
148
148
$ body = $ function ->getBody ();
149
149
150
150
// Used to have problems mocking methods with static variables in them.
151
- // Seems to work now (new version of runkit ) so the code checking for that has been removed.
151
+ // Seems to work now (new version of runkit7 ) so the code checking for that has been removed.
152
152
153
- if (!\runkit_method_copy ($ this ->_className , $ this ->_overrideName , $ this ->_className , $ this ->_methodName )) {
154
- throw new \RuntimeException ($ method . ' runkit_method_copy mock ' );
153
+ if (!\runkit7_method_copy ($ this ->_className , $ this ->_overrideName , $ this ->_className , $ this ->_methodName )) {
154
+ throw new \RuntimeException ($ method . ' runkit7_method_copy mock ' );
155
155
}
156
- if (!\runkit_method_remove ($ this ->_className , $ this ->_methodName )) {
157
- throw new \RuntimeException ($ method . ' runkit_method_remove mock ' );
156
+ if (!\runkit7_method_remove ($ this ->_className , $ this ->_methodName )) {
157
+ throw new \RuntimeException ($ method . ' runkit7_method_remove mock ' );
158
158
}
159
- if (!\runkit_method_add ($ this ->_className , $ this ->_methodName , $ function ->getParameters (), $ body , $ flags )) {
160
- throw new \RuntimeException ($ method . ' runkit_method_add mock ' );
159
+ if (!\runkit7_method_add ($ this ->_className , $ this ->_methodName , $ function ->getParameters (), $ body , $ flags )) {
160
+ throw new \RuntimeException ($ method . ' runkit7_method_add mock ' );
161
161
}
162
162
163
163
// Register object for later destruction.
@@ -175,14 +175,14 @@ public function unmock()
175
175
$ method = $ this ->_classAndMethod ();
176
176
if ($ this ->_isMocked ) {
177
177
// echo "Unmock $method\n";
178
- if (!\runkit_method_remove ($ this ->_className , $ this ->_methodName )) {
179
- trigger_error ($ method . ' runkit_method_remove1 unmock ' );
178
+ if (!\runkit7_method_remove ($ this ->_className , $ this ->_methodName )) {
179
+ trigger_error ($ method . ' runkit7_method_remove1 unmock ' );
180
180
}
181
- if (!\runkit_method_copy ($ this ->_className , $ this ->_methodName , $ this ->_className , $ this ->_overrideName )) {
182
- trigger_error ($ method . ' runkit_method_copy unmock ' );
181
+ if (!\runkit7_method_copy ($ this ->_className , $ this ->_methodName , $ this ->_className , $ this ->_overrideName )) {
182
+ trigger_error ($ method . ' runkit7_method_copy unmock ' );
183
183
}
184
- if (!\runkit_method_remove ($ this ->_className , $ this ->_overrideName )) {
185
- trigger_error ($ method . ' runkit_method_remove2 unmock ' );
184
+ if (!\runkit7_method_remove ($ this ->_className , $ this ->_overrideName )) {
185
+ trigger_error ($ method . ' runkit7_method_remove2 unmock ' );
186
186
}
187
187
$ this ->_isMocked = false ;
188
188
self ::$ _counts [$ method ] = [];
0 commit comments