Skip to content

Commit e5d8f1e

Browse files
committed
minor code style changes
1 parent 92d6979 commit e5d8f1e

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/Extractors/Twig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class Twig extends Extractor implements ExtractorInterface
1414
{
1515
public static $options = [
16-
'twig' => null
16+
'twig' => null,
1717
];
1818

1919
/**

src/Utils/JsFunctionsScanner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function getFunctions()
3232
for ($pos = 0; $pos < $length; ++$pos) {
3333
$prev = $char;
3434
$char = $this->code[$pos];
35-
$next = isset($this->code[$pos+1]) ? $this->code[$pos+1] : null;
35+
$next = isset($this->code[$pos + 1]) ? $this->code[$pos + 1] : null;
3636

3737
switch ($char) {
3838
case "\n":

src/translator_functions.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,3 @@ function dnp__($domain, $context, $original, $plural, $value)
166166

167167
return vsprintf($text, is_array($args[0]) ? $args[0] : $args);
168168
}
169-

0 commit comments

Comments
 (0)