You are here

public function ReflectionClassNewInstancePatch::supports in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php \Prophecy\Doubler\ClassPatch\ReflectionClassNewInstancePatch::supports()

Supports ReflectionClass

Parameters

ClassNode $node:

Return value

bool

Overrides ClassPatchInterface::supports

File

vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php, line 31

Class

ReflectionClassNewInstancePatch
ReflectionClass::newInstance patch. Makes first argument of newInstance optional, since it works but signature is misleading

Namespace

Prophecy\Doubler\ClassPatch

Code

public function supports(ClassNode $node) {
  return 'ReflectionClass' === $node
    ->getParentClass();
}