Skip to content

Commit 7ca792c

Browse files
committed
fixed some deprecation messages
1 parent 6665283 commit 7ca792c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Extension/Core/Type/TimezoneType.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function getBlockPrefix()
9595
*/
9696
public function loadChoiceList($value = null)
9797
{
98-
@trigger_error(sprintf('Method "%s" is deprecated since version 3.4 and will be removed in 4.0.', __METHOD__), E_USER_DEPRECATED);
98+
@trigger_error(sprintf('Method "%s" is deprecated since Symfony 3.4 and will be removed in 4.0.', __METHOD__), E_USER_DEPRECATED);
9999

100100
if (null !== $this->choiceList) {
101101
return $this->choiceList;
@@ -111,7 +111,7 @@ public function loadChoiceList($value = null)
111111
*/
112112
public function loadChoicesForValues(array $values, $value = null)
113113
{
114-
@trigger_error(sprintf('Method "%s" is deprecated since version 3.4 and will be removed in 4.0.', __METHOD__), E_USER_DEPRECATED);
114+
@trigger_error(sprintf('Method "%s" is deprecated since Symfony 3.4 and will be removed in 4.0.', __METHOD__), E_USER_DEPRECATED);
115115

116116
// Optimize
117117
$values = array_filter($values);
@@ -134,7 +134,7 @@ public function loadChoicesForValues(array $values, $value = null)
134134
*/
135135
public function loadValuesForChoices(array $choices, $value = null)
136136
{
137-
@trigger_error(sprintf('Method "%s" is deprecated since version 3.4 and will be removed in 4.0.', __METHOD__), E_USER_DEPRECATED);
137+
@trigger_error(sprintf('Method "%s" is deprecated since Symfony 3.4 and will be removed in 4.0.', __METHOD__), E_USER_DEPRECATED);
138138

139139
// Optimize
140140
$choices = array_filter($choices);

0 commit comments

Comments
 (0)