Fix code quality with rector [skip ci]

This commit is contained in:
James Cole
2025-11-09 09:08:03 +01:00
parent d2610be790
commit 68183a0a0e
209 changed files with 1021 additions and 1248 deletions

View File

@@ -23,13 +23,14 @@ declare(strict_types=1);
namespace FireflyIII\Support\Facades;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Facade;
class Preferences extends Facade
{
public function __construct()
{
app('log')->warning('Hi there');
Log::warning('Hi there');
}
/**