mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
[ticket/14948] Adjust calls for twig and phpunit updates
PHPBB3-14948
This commit is contained in:
@@ -81,17 +81,17 @@ class phpbb_test_case_helpers
|
||||
{
|
||||
case E_NOTICE:
|
||||
case E_STRICT:
|
||||
PHPUnit_Framework_Error_Notice::$enabled = true;
|
||||
$exceptionName = 'PHPUnit_Framework_Error_Notice';
|
||||
PHPUnit\Framework\Error\Notice::$enabled = true;
|
||||
$exceptionName = 'PHPUnit\Framework\Error\Notice';
|
||||
break;
|
||||
|
||||
case E_WARNING:
|
||||
PHPUnit_Framework_Error_Warning::$enabled = true;
|
||||
$exceptionName = 'PHPUnit_Framework_Error_Warning';
|
||||
PHPUnit\Framework\Error\Warning::$enabled = true;
|
||||
$exceptionName = 'PHPUnit\Framework\Error\Warning';
|
||||
break;
|
||||
|
||||
default:
|
||||
$exceptionName = 'PHPUnit_Framework_Error';
|
||||
$exceptionName = 'PHPUnit\Framework\Error\Error';
|
||||
break;
|
||||
}
|
||||
$this->expectedTriggerError = true;
|
||||
|
Reference in New Issue
Block a user