Skip to content

Commit dc57748

Browse files
committed
Improve indentation! 😃
1 parent 40996ff commit dc57748

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Interpreter/Health/HealthStatus.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ private function isAlcohol(): bool
120120
*/
121121
private function findInIngredients(string $component): bool
122122
{
123-
return preg_match('/' . $component . '/i', $this->data[$this->offset][DbColumn::INGREDIENTS]) === 1;
123+
return preg_match(
124+
'/' . $component . '/i',
125+
$this->data[$this->offset][DbColumn::INGREDIENTS]
126+
) === 1;
124127
}
125128
}

0 commit comments

Comments
 (0)