Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed May 8, 2023
1 parent 964d722 commit a7e7e3f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
use Rector\CodingStyle\Rector\ArrowFunction\StaticArrowFunctionRector;
use Rector\CodingStyle\Rector\ClassMethod\UnSpreadOperatorRector;
use Rector\CodingStyle\Rector\Closure\StaticClosureRector;
use Rector\CodingStyle\Rector\Property\InlineSimplePropertyAnnotationRector;
use Rector\Config\RectorConfig;
use Rector\Php81\Rector\Array_\FirstClassCallableRector;
use Rector\Set\ValueObject\LevelSetList;
Expand All @@ -23,11 +22,11 @@
SetList::PSR_4,
SetList::TYPE_DECLARATION,
]);
$rectorConfig->rule(InlineSimplePropertyAnnotationRector::class);

$rectorConfig->parallel();
$rectorConfig->paths([__DIR__ . '/config', __DIR__ . '/src', __DIR__ . '/spec', __FILE__]);
$rectorConfig->importNames();
$rectorConfig->removeUnusedImports();
$rectorConfig->skip([
__DIR__ . '/src/Controller',
__DIR__ . '/src/Command/Preview',
Expand Down
1 change: 0 additions & 1 deletion spec/Handler/LoggingSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
use Laminas\Http\PhpEnvironment\Request;
use Laminas\Log\Logger;
use Laminas\Log\Writer\Db;
use Laminas\Mail\Message;
use ReflectionProperty;

describe('LoggingSpec', function (): void {
Expand Down

0 comments on commit a7e7e3f

Please sign in to comment.