public function ReflectionClassNewInstancePatch::apply in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php \Prophecy\Doubler\ClassPatch\ReflectionClassNewInstancePatch::apply()
Updates newInstance's first argument to make it optional
Parameters
ClassNode $node:
Overrides ClassPatchInterface::apply
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Doubler/ ClassPatch/ ReflectionClassNewInstancePatch.php, line 41
Class
- ReflectionClassNewInstancePatch
- ReflectionClass::newInstance patch. Makes first argument of newInstance optional, since it works but signature is misleading
Namespace
Prophecy\Doubler\ClassPatchCode
public function apply(ClassNode $node) {
foreach ($node
->getMethod('newInstance')
->getArguments() as $argument) {
$argument
->setDefault(null);
}
}