Skip to content

Commit 035a91c

Browse files
Format code with php-cs-fixer
This commit fixes the style issues introduced in d25eaef according to the output from php-cs-fixer. Details: https://deepsource.io/gh/FriendsOfShopware/FroshTools/transform/9270e98a-e7c5-4530-8c30-7f86751fc141/
1 parent d25eaef commit 035a91c

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/Components/CacheHelper.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ public static function removeDir(string $path): void
6666
// If the given path is a file
6767
if (is_file($path)) {
6868
unlink($path);
69+
6970
return;
7071
}
7172

src/Components/Exception/CannotClearCacheException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace Frosh\Tools\Components\Exception;
44

@@ -10,4 +10,4 @@ public function getErrorCode(): string
1010
{
1111
return 'FROSH_TOOLS_CANNOT_CLEAR_CACHE';
1212
}
13-
}
13+
}

0 commit comments

Comments
 (0)