Skip to content

Commit 2edce0b

Browse files
committed
fixed some deprecation messages
1 parent cbb6708 commit 2edce0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Encoder/JsonEncoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public function supportsDecoding($format)
9898
*/
9999
public static function getLastErrorMessage()
100100
{
101-
@trigger_error('The '.__METHOD__.' method is deprecated since version 2.8 and will be removed in 3.0. Use json_last_error_msg() instead.', E_USER_DEPRECATED);
101+
@trigger_error('The '.__METHOD__.' method is deprecated since Symfony 2.8 and will be removed in 3.0. Use json_last_error_msg() instead.', E_USER_DEPRECATED);
102102

103103
return json_last_error_msg();
104104
}

0 commit comments

Comments
 (0)