We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40996ff commit dc57748Copy full SHA for dc57748
src/Interpreter/Health/HealthStatus.php
@@ -120,6 +120,9 @@ private function isAlcohol(): bool
120
*/
121
private function findInIngredients(string $component): bool
122
{
123
- return preg_match('/' . $component . '/i', $this->data[$this->offset][DbColumn::INGREDIENTS]) === 1;
+ return preg_match(
124
+ '/' . $component . '/i',
125
+ $this->data[$this->offset][DbColumn::INGREDIENTS]
126
+ ) === 1;
127
}
128
0 commit comments