Skip to content

Commit 35c7257

Browse files
committed
update packages
1 parent 2485ee9 commit 35c7257

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

rector.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44

55
use Rector\CodeQuality\Rector\PropertyFetch\ExplicitMethodCallOverMagicGetSetRector;
66
use Rector\Config\RectorConfig;
7-
use RectorLaravel\Rector\Assign\CallOnAppArrayAccessToStandaloneAssignRector;
8-
use RectorLaravel\Rector\ClassMethod\AddParentRegisterToEventServiceProviderRector;
9-
use RectorLaravel\Set\LaravelSetList;
107
use Rector\Php74\Rector\Property\TypedPropertyRector;
118
use Rector\PHPUnit\Set\PHPUnitSetList;
129
use Rector\Set\ValueObject\SetList;
@@ -22,7 +19,6 @@
2219

2320
// Define what rule sets will be applied
2421
$containerConfigurator->import(PHPUnitSetList::PHPUNIT_91);
25-
$containerConfigurator->import(LaravelSetList::LARAVEL_90);
2622
$containerConfigurator->import(SetList::CODE_QUALITY);
2723
$containerConfigurator->import(SetList::DEAD_CODE);
2824
$containerConfigurator->import(SetList::PHP_80);
@@ -32,6 +28,4 @@
3228

3329
// register a single rule
3430
$services->set(TypedPropertyRector::class);
35-
$services->set(CallOnAppArrayAccessToStandaloneAssignRector::class);
36-
$services->set(AddParentRegisterToEventServiceProviderRector::class);
3731
};

tests/Units/Domain/EventTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public function testTransactionCreatedThrowListener(): void
145145
{
146146
$this->app->bind(ClockServiceInterface::class, ClockFakeService::class);
147147

148-
Event::listen(TransactionCreatedEventInterface::class, TransactionCreatedThrowListener::class,);
148+
Event::listen(TransactionCreatedEventInterface::class, TransactionCreatedThrowListener::class);
149149

150150
/** @var Buyer $buyer */
151151
$buyer = BuyerFactory::new()->create();

0 commit comments

Comments
 (0)