You are here

public function LazyDouble::setArguments in Zircon Profile 8

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

Sets constructor arguments.

Parameters

array $arguments:

File

vendor/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php, line 103

Class

LazyDouble
Lazy double. Gives simple interface to describe double before creating it.

Namespace

Prophecy\Doubler

Code

public function setArguments(array $arguments = null) {
  $this->arguments = $arguments;
}