Skip to content

Commit f5ac05b

Browse files
committed
Some syntactic errors were corrected
1 parent 9bfb502 commit f5ac05b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README-ES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Session::init();
7474

7575
Session::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();
103103
SessionTest::testDisplay();
104104
SessionTest::testDestroyOneKeySession();
105105
SessionTest::testDestroyAllSessions();
106-
SessionTest::testDestroyAllSessions();
106+
SessionTest::testDestroyAllSessionsWithPrefix();
107107
```
108108

109109
### Manejador de excepciones

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Session::init();
7474

7575
Session::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();
104104
SessionTest::testDisplay();
105105
SessionTest::testDestroyOneKeySession();
106106
SessionTest::testDestroyAllSessions();
107-
SessionTest::testDestroyAllSessions();
107+
SessionTest::testDestroyAllSessionsWithPrefix();
108108
```
109109

110110
### Exception Handler

tests/SessionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)