public function PHPUnit_Framework_Constraint_ExceptionCode::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php \PHPUnit_Framework_Constraint_ExceptionCode::__construct()
Parameters
int $expected:
Overrides PHPUnit_Framework_Constraint::__construct
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Constraint/ ExceptionCode.php, line 24
Class
- PHPUnit_Framework_Constraint_ExceptionCode
- @since Class available since Release 3.6.6
Code
public function __construct($expected) {
parent::__construct();
$this->expectedCode = $expected;
}