Files
w4rpservices/vendor/phpunit/phpunit/tests/_files/ExceptionWithThrowable.php
2019-05-18 09:06:43 +00:00

14 lines
332 B
PHP

<?php
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
interface ExceptionWithThrowable extends \Throwable
{
public function getAdditionalInformation();
}