public function PHPUnit_Framework_Warning::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/src/Framework/Warning.php \PHPUnit_Framework_Warning::__construct()
Parameters
string $message:
Overrides PHPUnit_Framework_TestCase::__construct
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Warning.php, line 46
Class
- PHPUnit_Framework_Warning
- A warning.
Code
public function __construct($message = '') {
$this->message = $message;
parent::__construct('Warning');
}