File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ Session::init();
7474
7575Session::set('name', 'Joseph');
7676
77- var_dump(Session::get('name'));
77+ var_dump(Session::get('name')); # string(6) "Joseph"
7878```
7979
8080### Tests
@@ -103,7 +103,7 @@ SessionTest::testRegenerate();
103103SessionTest::testDisplay();
104104SessionTest::testDestroyOneKeySession();
105105SessionTest::testDestroyAllSessions();
106- SessionTest::testDestroyAllSessions ();
106+ SessionTest::testDestroyAllSessionsWithPrefix ();
107107```
108108
109109### Manejador de excepciones
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ Session::init();
7474
7575Session::set('name', 'Joseph');
7676
77- var_dump(Session::get('name'));
77+ var_dump(Session::get('name')); # string(6) "Joseph"
7878```
7979
8080### Tests
@@ -104,7 +104,7 @@ SessionTest::testRegenerate();
104104SessionTest::testDisplay();
105105SessionTest::testDestroyOneKeySession();
106106SessionTest::testDestroyAllSessions();
107- SessionTest::testDestroyAllSessions ();
107+ SessionTest::testDestroyAllSessionsWithPrefix ();
108108```
109109
110110### Exception Handler
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ public static function testDestroyAllSessions() {
175175 *
176176 * @since 1.0.0
177177 */
178- public static function testDestroyAllSessions () {
178+ public static function testDestroyAllSessionsWithPrefix () {
179179
180180 Session::init ();
181181
You can’t perform that action at this time.
0 commit comments