public function KeywordPatch::getPriority in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php \Prophecy\Doubler\ClassPatch\KeywordPatch::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/ KeywordPatch.php, line 54
Class
- KeywordPatch
- Remove method functionality from the double which will clash with php keywords.
Namespace
Prophecy\Doubler\ClassPatchCode
public function getPriority() {
return 49;
}