We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2288744 commit 50262e3Copy full SHA for 50262e3
2 files changed
application/configs/default/php.php
@@ -6,6 +6,4 @@
6
* @link http://php.net/manual/en/configuration.changes.modes.php
7
* @return array
8
*/
9
-return [
10
- 'session.cache_expire' => '180', // 180 is default value
11
-];
+return [];
application/configs/production/php.php
@@ -0,0 +1,11 @@
1
+<?php
2
+/**
3
+ * PHP configuration
4
+ *
5
+ * @link http://php.net/manual/en/session.configuration.php
+ * @link http://php.net/manual/en/configuration.changes.modes.php
+ * @return array
+ */
+return [
+ 'session.cache_expire' => '180', // 180 is default value
+];
0 commit comments