public function ReflectionClassNewInstancePatch::getPriority 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::getPriority()
Returns patch priority, which determines when patch will be applied.
Return value
int Priority number (higher = earlier)
Overrides ClassPatchInterface::getPriority
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Doubler/ ClassPatch/ ReflectionClassNewInstancePatch.php, line 53
Class
- ReflectionClassNewInstancePatch
- ReflectionClass::newInstance patch. Makes first argument of newInstance optional, since it works but signature is misleading
Namespace
Prophecy\Doubler\ClassPatchCode
public function getPriority() {
return 50;
}