diff --git a/Parser/Client/Browser.php b/Parser/Client/Browser.php index 9849181c12..e2c7608325 100644 --- a/Parser/Client/Browser.php +++ b/Parser/Client/Browser.php @@ -370,7 +370,11 @@ public function parse(): ?array } // This Exception should never be thrown. If so a defined browser name is missing in $availableBrowsers - throw new \Exception(sprintf('Detected browser name "%s" was not found in $availableBrowsers. Tried to parse user agent: %s', $name, $this->userAgent)); // @codeCoverageIgnore + throw new \Exception(sprintf( + 'Detected browser name "%s" was not found in $availableBrowsers. Tried to parse user agent: %s', + $name, + $this->userAgent + )); // @codeCoverageIgnore } /** diff --git a/Parser/Client/Browser/Engine.php b/Parser/Client/Browser/Engine.php index ddb1fe0dcc..f2d0820e3d 100644 --- a/Parser/Client/Browser/Engine.php +++ b/Parser/Client/Browser/Engine.php @@ -85,6 +85,9 @@ public function parse(): ?array } // This Exception should never be thrown. If so a defined browser name is missing in $availableEngines - throw new \Exception(sprintf('Detected browser engine was not found in $availableEngines. Tried to parse user agent: %s', $this->userAgent)); // @codeCoverageIgnore + throw new \Exception(sprintf( + 'Detected browser engine was not found in $availableEngines. Tried to parse user agent: %s', + $this->userAgent + )); // @codeCoverageIgnore } } diff --git a/Parser/Device/AbstractDeviceParser.php b/Parser/Device/AbstractDeviceParser.php index d47d576867..df3372d2ee 100644 --- a/Parser/Device/AbstractDeviceParser.php +++ b/Parser/Device/AbstractDeviceParser.php @@ -735,7 +735,13 @@ public function parse(): ?array if (false === $brandId) { // This Exception should never be thrown. If so a defined brand name is missing in $deviceBrands - throw new \Exception(sprintf("The brand with name '%s' should be listed in the deviceBrands array. Tried to parse user agent: %s", $brand, $this->userAgent)); // @codeCoverageIgnore + throw new \Exception( + sprintf( + "The brand name '%s' needs to be in deviceBrands array. Tried parsing user agent: %s", + $brand, + $this->userAgent + ) + ); // @codeCoverageIgnore } $this->brand = (string) $brandId;