You are here

public function DisableConstructorPatch::getPriority in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php \Prophecy\Doubler\ClassPatch\DisableConstructorPatch::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/DisableConstructorPatch.php, line 68

Class

DisableConstructorPatch
Disable constructor. Makes all constructor arguments optional.

Namespace

Prophecy\Doubler\ClassPatch

Code

public function getPriority() {
  return 100;
}