Skip to content

Commit bbf3418

Browse files
keradusnicolas-grekas
authored andcommitted
CS: apply rules
1 parent fb36832 commit bbf3418

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Crawler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function ($m) {
175175
if (0xF0 <= $m[$i]) {
176176
$c = (($m[$i++] - 0xF0) << 18) + (($m[$i++] - 0x80) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80;
177177
} elseif (0xE0 <= $m[$i]) {
178-
$c = (($m[$i++] - 0xE0) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80;
178+
$c = (($m[$i++] - 0xE0) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80;
179179
} else {
180180
$c = (($m[$i++] - 0xC0) << 6) + $m[$i++] - 0x80;
181181
}

Tests/FormTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ public function testConstructor($message, $form, $values)
188188
$form = $this->createForm('<form>'.$form.'</form>');
189189
$this->assertEquals(
190190
$values,
191-
array_map(function ($field) {
191+
array_map(
192+
function ($field) {
192193
$class = get_class($field);
193194

194195
return array(substr($class, strrpos($class, '\\') + 1), $field->getValue());

0 commit comments

Comments
 (0)