Skip to content

Commit 3a047e1

Browse files
committed
Php Inspections (EA Extended): syntax fix
1 parent dc7b44b commit 3a047e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/i18n/sfMessageSource_XLIFF.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ public function save($catalogue = 'messages')
183183
$lastNodes = $xpath->query('//trans-unit[not(@id <= preceding-sibling::trans-unit/@id) and not(@id <= following-sibling::trans-unit/@id)]');
184184
if (null !== $last = $lastNodes->item(0))
185185
{
186-
$count = i(int) $last->getAttribute('id');
186+
$count = (int) $last->getAttribute('id');
187187
}
188188
else
189189
{

0 commit comments

Comments
 (0)