Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
mock_session_regenerate_id.php
Go to the documentation of this file.
1 <?php
2 /***
3  * Copyright © Magento, Inc. All rights reserved.
4  * See COPYING.txt for license details.
5  */
6 
8 
9 use \Magento\Framework\Session\Test\Unit\SessionManagerTest;
10 
17 function session_regenerate_id($var)
18 {
19  global $mockPHPFunctions;
20  if ($mockPHPFunctions) {
21  SessionManagerTest::assertTrue($var);
22  return true;
23  }
24  return call_user_func_array('\session_regenerate_id', func_get_args());
25 }
$mockPHPFunctions