You are here

public function Mockable::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/phpunit-mock-objects/tests/_fixture/Mockable.php \Mockable::__construct()

File

vendor/phpunit/phpunit-mock-objects/tests/_fixture/Mockable.php, line 7

Class

Mockable

Code

public function __construct($arg1 = null, $arg2 = null) {
  $this->constructorArgs = array(
    $arg1,
    $arg2,
  );
}