Skip to content

Commit 31661f6

Browse files
committed
Update copyright messages
1 parent 5daf881 commit 31661f6

11 files changed

+11
-11
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016-2017 Riikka Kalliomäki
1+
Copyright (c) 2016-2020 Riikka Kalliomäki
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of
44
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,6 @@ options also have additional effects on the encoders:
282282

283283
## Credits ##
284284

285-
This library is Copyright (c) 2017 Riikka Kalliomäki.
285+
This library is Copyright (c) 2017-2020 Riikka Kalliomäki.
286286

287287
See LICENSE for license and copying information.

src/AbstractJsonEncoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Abstract encoder for encoding JSON iteratively.
77
*
88
* @author Riikka Kalliomäki <[email protected]>
9-
* @copyright Copyright (c) 2016-2017 Riikka Kalliomäki
9+
* @copyright Copyright (c) 2016-2020 Riikka Kalliomäki
1010
* @license http://opensource.org/licenses/mit-license.php MIT License
1111
*/
1212
abstract class AbstractJsonEncoder implements \Iterator

src/BufferJsonEncoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Encodes the given value as JSON and returns encoding result step by step.
77
*
88
* @author Riikka Kalliomäki <[email protected]>
9-
* @copyright Copyright (c) 2016-2017 Riikka Kalliomäki
9+
* @copyright Copyright (c) 2016-2020 Riikka Kalliomäki
1010
* @license http://opensource.org/licenses/mit-license.php MIT License
1111
*/
1212
class BufferJsonEncoder extends AbstractJsonEncoder

src/EncodingException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Exception that gets thrown when error occurs in JSON encoding and the encoder cannot continue.
77
*
88
* @author Riikka Kalliomäki <[email protected]>
9-
* @copyright Copyright (c) 2016-2017 Riikka Kalliomäki
9+
* @copyright Copyright (c) 2016-2020 Riikka Kalliomäki
1010
* @license http://opensource.org/licenses/mit-license.php MIT License
1111
*/
1212
class EncodingException extends \Exception

src/JsonStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Provides a http stream interface for encoding JSON.
99
*
1010
* @author Riikka Kalliomäki <[email protected]>
11-
* @copyright Copyright (c) 2016-2017 Riikka Kalliomäki
11+
* @copyright Copyright (c) 2016-2020 Riikka Kalliomäki
1212
* @license http://opensource.org/licenses/mit-license.php MIT License
1313
*/
1414
class JsonStream implements StreamInterface

src/JsonToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* List of JSON tokens outputted by the encoder.
77
*
88
* @author Riikka Kalliomäki <[email protected]>
9-
* @copyright Copyright (c) 2017 Riikka Kalliomäki
9+
* @copyright Copyright (c) 2017-2020 Riikka Kalliomäki
1010
* @license http://opensource.org/licenses/mit-license.php MIT License
1111
*/
1212
final class JsonToken

src/StreamJsonEncoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Encodes value into JSON and directly echoes it or passes it to a stream.
77
*
88
* @author Riikka Kalliomäki <[email protected]>
9-
* @copyright Copyright (c) 2016-2017 Riikka Kalliomäki
9+
* @copyright Copyright (c) 2016-2020 Riikka Kalliomäki
1010
* @license http://opensource.org/licenses/mit-license.php MIT License
1111
*/
1212
class StreamJsonEncoder extends AbstractJsonEncoder

tests/classes/SerializableData.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* SerializableData.
77
*
88
* @author Riikka Kalliomäki <[email protected]>
9-
* @copyright Copyright (c) 2016-2017 Riikka Kalliomäki
9+
* @copyright Copyright (c) 2016-2020 Riikka Kalliomäki
1010
* @license http://opensource.org/licenses/mit-license.php MIT License
1111
*/
1212
class SerializableData implements \JsonSerializable

tests/tests/JsonEncoderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* StreamingJsonEncoderTest.
1111
*
1212
* @author Riikka Kalliomäki <[email protected]>
13-
* @copyright Copyright (c) 2016-2017 Riikka Kalliomäki
13+
* @copyright Copyright (c) 2016-2020 Riikka Kalliomäki
1414
* @license http://opensource.org/licenses/mit-license.php MIT License
1515
*/
1616
class JsonEncoderTest extends TestCase

0 commit comments

Comments
 (0)