We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cc6c81 commit d2c1446Copy full SHA for d2c1446
src/Reflection/ClassReflection.php
@@ -434,20 +434,6 @@ public function getNativeMethod(string $methodName): MethodReflection
434
return $this->getPhpExtension()->getNativeMethod($this, $methodName);
435
}
436
437
- /**
438
- * @deprecated Use ClassReflection::getNativeReflection() instead.
439
- * @return MethodReflection[]
440
- */
441
- public function getNativeMethods(): array
442
- {
443
- $methods = [];
444
- foreach ($this->reflection->getMethods() as $method) {
445
- $methods[] = $this->getNativeMethod($method->getName());
446
- }
447
-
448
- return $methods;
449
450
451
public function hasConstructor(): bool
452
{
453
return $this->findConstructor() !== null;
0 commit comments