Skip to content

Commit f97ec70

Browse files
committed
Fixed bug in test file and comments were edited
1 parent fe38afb commit f97ec70

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

README-ES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Latest Stable Version](https://poser.pugx.org/josantonius/json/v/stable)](https://packagist.org/packages/josantonius/json) [![Total Downloads](https://poser.pugx.org/josantonius/json/downloads)](https://packagist.org/packages/josantonius/json) [![Latest Unstable Version](https://poser.pugx.org/josantonius/json/v/unstable)](https://packagist.org/packages/josantonius/json) [![License](https://poser.pugx.org/josantonius/json/license)](https://packagist.org/packages/josantonius/json)
44

5-
[Spanish version](README-ES.md)
5+
[English version](README-ES.md)
66

77
Librería PHP para la gestión de archivos JSON.
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Latest Stable Version](https://poser.pugx.org/josantonius/json/v/stable)](https://packagist.org/packages/josantonius/json) [![Total Downloads](https://poser.pugx.org/josantonius/json/downloads)](https://packagist.org/packages/josantonius/json) [![Latest Unstable Version](https://poser.pugx.org/josantonius/json/v/unstable)](https://packagist.org/packages/josantonius/json) [![License](https://poser.pugx.org/josantonius/json/license)](https://packagist.org/packages/josantonius/json)
44

5-
[Spanish version](README-ES.md)
5+
[Versión en español](README-ES.md)
66

77
PHP simple library for managing Json files.
88

src/Exception/JsonException.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<?php
1+
<?php
22
/**
33
* PHP simple library for managing Json files.
44
*
5-
* @author Josantonius - info@josantonius.com
6-
* @copyright Copyright (c) 2016 JST PHP Framework
5+
* @author Josantonius - hola@josantonius.com
6+
* @copyright Copyright (c) 2016 - 2017
77
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
88
* @link https://github.com/Josantonius/PHP-Json
9-
* @since File available since 1.0.0 - Update: 2017-02-14
9+
* @since 1.0.0
1010
*/
1111

1212
namespace Josantonius\Json\Exception;

src/Json.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<?php
1+
<?php
22
/**
33
* PHP simple library for managing Json files.
44
*
5-
* @author Josantonius - info@josantonius.com
6-
* @copyright Copyright (c) 2016 JST PHP Framework
5+
* @author Josantonius - hola@josantonius.com
6+
* @copyright Copyright (c) 2016 - 2017
77
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
88
* @link https://github.com/Josantonius/PHP-Json
9-
* @since File available since 1.0.0 - Update: 2017-02-14
9+
* @since 1.0.0
1010
*/
1111

1212
namespace Josantonius\Json;

tests/JsonTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
/**
33
* PHP simple library for managing Json files.
44
*
5-
* @author Josantonius - info@josantonius.com
6-
* @copyright Copyright (c) 2016 JST PHP Framework
5+
* @author Josantonius - hola@josantonius.com
6+
* @copyright Copyright (c) 2016 - 2017
77
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
88
* @link https://github.com/Josantonius/PHP-Json
9-
* @since File available since 1.0.0 - Update: 2017-02-14
9+
* @since 1.0.0
1010
*/
1111

1212
namespace Josantonius\Json\Tests;
@@ -55,7 +55,7 @@ public static function testFileToArray() {
5555

5656
$pathfile = __DIR__ . '/resources/example.json';
5757

58-
echo '<pre>'; var_dump(Json::fileToArray($pathfile); echo '</pre>';
58+
echo '<pre>'; var_dump(Json::fileToArray($pathfile)); echo '</pre>';
5959
}
6060

6161
/**

0 commit comments

Comments
 (0)