BaseTestCase: Remove `t` and `mt` function declarations

This commit is contained in:
Johannes Meyer 2023-07-04 16:29:41 +02:00
parent 58673b0b95
commit 3f447cb954
1 changed files with 0 additions and 17 deletions

View File

@ -1,23 +1,6 @@
<?php
/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
namespace {
if (!function_exists('t')) {
function t()
{
return func_get_arg(0);
}
}
if (!function_exists('mt')) {
function mt()
{
return func_get_arg(0);
}
}
}
namespace Icinga\Test {
use Exception;