summaryrefslogtreecommitdiff
path: root/ext/gettext/tests/bug73730.phpt
blob: 6fd63b885da6ed96b1e439e57611a37bea157276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #73730 (textdomain(null) throws in strict mode)
--SKIPIF--
<?php
if (!extension_loaded('gettext')) die('skip gettext extension is not available');
?>
--FILE--
<?php
declare(strict_types=1);

var_dump(textdomain(null));
?>
--EXPECT--
string(8) "messages"