updates for Filament v4

This commit is contained in:
Adam Weston
2025-06-21 11:19:47 -04:00
parent 93d46d196d
commit c2645897dd
18 changed files with 110 additions and 84 deletions

17
rector.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPaths([
__DIR__.'/src',
])
->withPreparedSets(
deadCode: true,
codeQuality: true,
typeDeclarations: true,
privatization: true,
earlyReturn: true,
strictBooleans: true,
)
->withPhpSets();