Skip to content

Commit aca19f4

Browse files
author
Daniel Kinzler
authored
Merge pull request #28 from DataValues/release022
Release 0.2.2
2 parents f1bfad5 + 83b192a commit aca19f4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ as [Wikimedia Germany](https://wikimedia.de) employee for the [Wikidata project]
5656

5757
## Release notes
5858

59-
### 0.2.2 (2016-07-14)
59+
### 0.2.2 (2016-07-15)
6060

61-
* Fixed `ValueFormatterTestBase` not doing strict string comparisons
61+
* Fixed `ValueFormatterTestBase` not doing strict string comparisons.
6262

6363
### 0.2.1 (2016-01-13)
6464

src/ValueValidators/Error.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Error {
2828
* @param string $code
2929
* @param array $params
3030
*
31-
* @return static
31+
* @return self
3232
*/
3333
public static function newError( $text = '', $property = null, $code = 'invalid', array $params = array() ) {
3434
return new static( $text, self::SEVERITY_ERROR, $property, $code, $params );

src/ValueValidators/Result.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Result {
2727
/**
2828
* @since 0.1
2929
*
30-
* @return static
30+
* @return self
3131
*/
3232
public static function newSuccess() {
3333
return new static( true );
@@ -38,7 +38,7 @@ public static function newSuccess() {
3838
*
3939
* @param Error[] $errors
4040
*
41-
* @return static
41+
* @return self
4242
*/
4343
public static function newError( array $errors ) {
4444
return new static( false, $errors );

0 commit comments

Comments
 (0)