We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d8e69b commit d4f8201Copy full SHA for d4f8201
lib/internal/Magento/Framework/Session/Test/Unit/_files/mock_ini_set.php
@@ -18,10 +18,12 @@
18
function ini_set($varName, $newValue)
19
{
20
global $mockPHPFunctions;
21
+ echo "MOCK INI_SET CALL 1";
22
if ($mockPHPFunctions) {
23
SessionManagerTest::$isIniSetInvoked = true;
24
SessionManagerTest::assertSame(SessionManagerTest::SESSION_USE_ONLY_COOKIES, $varName);
25
SessionManagerTest::assertSame(SessionManagerTest::SESSION_USE_ONLY_COOKIES_ENABLE, $newValue);
26
+ echo "MOCK INI_SET CALL 2";
27
return true;
28
}
29
return call_user_func_array('\ini_set', func_get_args());
0 commit comments