public function PHPUnit_Framework_Constraint_IsIdentical::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php \PHPUnit_Framework_Constraint_IsIdentical::__construct()
Parameters
mixed $value:
Overrides PHPUnit_Framework_Constraint::__construct
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Constraint/ IsIdentical.php, line 39
Class
- PHPUnit_Framework_Constraint_IsIdentical
- Constraint that asserts that one value is identical to another.
Code
public function __construct($value) {
parent::__construct();
$this->value = $value;
}