Skip to content

Commit 65af9d8

Browse files
committed
README.md update
Update Example and Running the tests file
1 parent 5e51f52 commit 65af9d8

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,15 @@ Step 2
3131
Example
3232
```
3333

34-
Run example.php
34+
Run [src/example.php](src/example.php) and check your database
3535

3636
## Running the tests
3737

38-
Run [file] with PHPUnit
38+
Run [test/SessionHandlerTest.php](test/SessionHandlerTest.php) and [test/SessionDBTest.php](test/SessionDBTest.php) with PHPUnit
3939

4040
```
41-
$ phpunit Test.php
41+
$ phpunit test/SessionHandlerTest.php
42+
$ phpunit test/SessionDBTest.php
4243
```
4344

4445
## Author

src/models/DB.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @copyright 2017 Liam Kelly
1010
* @license MIT License <https://github.com/likel/php-simple-sessions/blob/master/LICENSE>
1111
* @link https://github.com/likel/php-simple-sessions
12-
* @version 1.0.0
12+
* @version 1.0.1
1313
*/
1414
namespace Likel;
1515

src/models/Session/Handler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @copyright 2017 Liam Kelly
1414
* @license MIT License <https://github.com/likel/php-simple-sessions/blob/master/LICENSE>
1515
* @link https://github.com/likel/php-simple-sessions
16-
* @version 1.0.0
16+
* @version 1.0.1
1717
*/
1818
namespace Likel\Session;
1919

0 commit comments

Comments
 (0)