Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
markvaneijk committed May 9, 2024
2 parents df45c83 + d2cbb59 commit 3d5bea6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/Commands/PermanentCachesStatusCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace Vormkracht10\PermanentCache\Commands;

use Illuminate\Console\Command;
use ReflectionClass;
use Spatie\Emoji\Emoji;
use Symfony\Component\Console\Helper\TableSeparator;
use Vormkracht10\PermanentCache\Facades\PermanentCache;
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/UpdatePermanentCachesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function handle()

if (
$this->option('filter') &&
!str_contains(strtolower($cache->getName()), strtolower($this->option('filter')))
! str_contains(strtolower($cache->getName()), strtolower($this->option('filter')))
) {
continue;
}
Expand Down
2 changes: 1 addition & 1 deletion src/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
if (! function_exists('readable_size')) {
function readable_size($bytes = 0, $decimals = 2, $decimal_separator = ',', $thousands_separator = '.'): string
{
if(is_null($bytes)) {
if (is_null($bytes)) {
return '';
}

Expand Down

0 comments on commit 3d5bea6

Please sign in to comment.