2012-07-21 18:08:10 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2017-06-10 22:15:34 +00:00
|
|
|
* CakePHP(tm) Tests <https://book.cakephp.org/2.0/en/development/testing.html>
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2012-07-21 18:08:10 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2012-07-21 18:08:10 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice
|
|
|
|
*
|
2017-06-10 22:10:52 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-10 22:15:34 +00:00
|
|
|
* @link https://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2012-07-21 18:08:10 +00:00
|
|
|
* @package Cake.Test.Fixture
|
|
|
|
* @since CakePHP(tm) v 2.3.0
|
2017-06-10 22:23:14 +00:00
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
2012-07-21 18:08:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fixture class for the default session configuration
|
|
|
|
*
|
|
|
|
* @package Cake.Test.Fixture
|
|
|
|
*/
|
|
|
|
class CakeSessionFixture extends CakeTestFixture {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fields property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $fields = array(
|
|
|
|
'id' => array('type' => 'string', 'length' => 128, 'key' => 'primary'),
|
2013-06-09 15:39:48 +00:00
|
|
|
'data' => array('type' => 'text', 'null' => true),
|
2012-07-21 18:08:10 +00:00
|
|
|
'expires' => array('type' => 'integer', 'length' => 11, 'null' => true)
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* records property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $records = array();
|
|
|
|
}
|