You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Symfony/Bridge/Twig/Tests/Extension/TranslationExtensionTest.php
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -87,17 +87,17 @@ public function getTransTests()
87
87
88
88
// transchoice
89
89
array('{% transchoice count from "messages" %}{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples{% endtranschoice %}',
90
-
'There is no apples', array('count' => 0)),
90
+
'There is no apples', array('count' => 0), ),
91
91
array('{% transchoice count %}{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples{% endtranschoice %}',
92
-
'There is 5 apples', array('count' => 5)),
92
+
'There is 5 apples', array('count' => 5), ),
93
93
array('{% transchoice count %}{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples (%name%){% endtranschoice %}',
94
-
'There is 5 apples (Symfony)', array('count' => 5, 'name' => 'Symfony')),
94
+
'There is 5 apples (Symfony)', array('count' => 5, 'name' => 'Symfony'), ),
95
95
array('{% transchoice count with { \'%name%\': \'Symfony\' } %}{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples (%name%){% endtranschoice %}',
96
-
'There is 5 apples (Symfony)', array('count' => 5)),
96
+
'There is 5 apples (Symfony)', array('count' => 5), ),
97
97
array('{% transchoice count into "fr"%}{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples{% endtranschoice %}',
98
-
'There is no apples', array('count' => 0)),
98
+
'There is no apples', array('count' => 0), ),
99
99
array('{% transchoice 5 into "fr"%}{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples{% endtranschoice %}',
0 commit comments