Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Oct 18, 2024
1 parent 50c0029 commit 5c57f3d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Support/Features.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ public static function pricing(): Pricing
return self::$pricing ??= new Pricing();
}

private static function searchEngine(): SearchEngine
{
return self::$searchEngine ??= new SearchEngine();
}

public static function inventory(): Inventory
{
return self::$inventory ??= new Inventory();
Expand Down Expand Up @@ -100,4 +95,9 @@ public static function isInventoryDisabled(): bool
{
return self::inventory()->isDisabled();
}

private static function searchEngine(): SearchEngine
{
return self::$searchEngine ??= new SearchEngine();
}
}

0 comments on commit 5c57f3d

Please sign in to comment.