Skip to content

Commit 4c567f1

Browse files
Format code with php-cs-fixer
This commit fixes the style issues introduced in d8c8046 according to the output from php-cs-fixer. Details: https://deepsource.io/gh/FriendsOfShopware/FroshTools/transform/7baca63f-a8d4-4c57-b443-d23ebaf620be/
1 parent d8c8046 commit 4c567f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Components/Health/Checker/PerformanceChecker/PhpSettingsChecker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private function checkEnableFileOverride(HealthCollection $collection, string $u
6969
private function checkInternedStringsBuffer(HealthCollection $collection, string $url): void
7070
{
7171
$currentValue = \ini_get('opcache.interned_strings_buffer') ?: 'not set';
72-
if ((int)$currentValue < 20) {
72+
if ((int) $currentValue < 20) {
7373
$collection->add(
7474
SettingsResult::warning('frosh-tools.checker.InternedStringsBufferWarning',
7575
$currentValue,
@@ -117,7 +117,7 @@ private function checkZendDetectUnicode(HealthCollection $collection, string $ur
117117
private function checkRealpathCacheTtl(HealthCollection $collection, string $url): void
118118
{
119119
$currentValue = \ini_get('realpath_cache_ttl') ?: 'not set';
120-
if ((int)$currentValue < 3600) {
120+
if ((int) $currentValue < 3600) {
121121
$collection->add(
122122
SettingsResult::warning('frosh-tools.checker.RealpathCacheTtlWarning',
123123
$currentValue,

0 commit comments

Comments
 (0)